我想知道link_to语法应该用于制作ajax请求(或其他想法,这里可能会出错).目前我有
<%= form_tag "save_sets",:remote => true,:name => "set_form" do %>
<%= link_to assignment.name,:action => :view_student_problem_set,:remote => true %> <%= link_to assignment.name,:action => :view_student_problem_set %> <%= link_to assignment.name,{:action => :view_student_problem_set,:remote => true} %> <%= link_to assignment.name,{:remote => true,:action => :view_student_problem_set} %> <%= link_to assignment.name,{:remote => true},{:action => :view_student_problem_set} <%= link_to assignment.name,:action => :view_student_problem_set %>
只生成“?remote = true”的链接,而不是data-remote =“true”,和
<%= link_to assignment.name,{:action => :view_student_problem_set} %>
显然是语法错误.
我尝试过的大多数组合都来自教程,论坛帖子和文档.我不认为符号集合必须按特定顺序排列,但我只是在彻底.无论如何,我的谷歌搜索技巧已经满足了他们的匹配.
form_tag和link_to标记之间的相关jquery代码,控制器代码和诸如此类的东西都是相同的.
谢谢你们.
解决方法
<%= link_to assignment.name,{:action => :view_student_problem_set},:remote => true %>