发送变量的链接有问题。使用form_for和submit按钮可以正常工作,但我需要使用link_to发送数据。
这与form_很好地配合,用于:
<%= form_for (@post), :method => :post, :remote => true, :html => { :id => "#{@post.id}" }, :url => { :controller => "posts", :action => "follow", :post_id => post.id } do |f| %>
<%= f.submit "Follow" %>
<% end %>
这不起作用:(:
<%= link_to post_path(@post), :method => :post, :remote => true, :html => { :id => "#{@post.id}" }, :url => { :controller => "posts", :action => "follow", :post_id => post.id } do%>
<em></em>
<%= "Follow" %>
<% end %>
最后,链接到不发送参数,我的控制器不接收参数并获取错误类型invalidFind(调用文档find with nil无效):
编辑:
我现在找到了一个解决方案…参数必须设置到目标中-
参数:
<%= link_to post_path(:post_id => post.id), :method => :post, :remote => true, :html => { :id => "#{@post.id}" }, :url => { :controller => "posts", :action => "follow" } do%>
最佳答案
您可以使用任何url/路径帮助程序发送参数。像这样传入散列键/值对。
<%= link_to post_path(@post, :my_param => "param value"), .... %>