0

我想通过下面给定的图像标签向控制器发送一个参数。我怎样才能做到这一点?

<%=link_to image_tag("del.png", :alt=>"Remove"), question, :confirm => t('json_message.are_you_sure'), :method => :delete%>

感谢广告:)-

4

1 回答 1

0

您可以使用显式question_path(question)路由,然后添加您想要的任何参数。

例如

<%=link_to image_tag("del.png", :alt => "Remove"), question_path(question, :remove => true), :confirm => t('json_message.are_you_sure'), :method => :delete %>

此链接将显示为/questions/1?remove=true

于 2013-06-20T12:24:45.377 回答