Rails 3 - 如何在 link_to 上发送数据:remote=>true?

发布于 2024-11-04 16:24:53 字数 460 浏览 0 评论 0原文

我正在尝试找出 Rails 3 中的新 link_to 但我仍然不明白 在 Rails 2 中我这样做:

<%= link_to_remote "My Link",:url=>{:action=>:myaction},:with=>"'data='+$('#someField').attr('value')" %>

但是在 Rails 3 中使用新语法应该如何呢?

我正在尝试类似的操作

<%=link_to "My Link",{:action=>"myaction"},:with=>"'data='+$('#someField').attr('value');",:remote=>true%>

,但我没有在控制器的操作中获取数量参数

I am trying to figure out the new link_to in Rails 3 but i still don't get it
In Rails 2 I do:

<%= link_to_remote "My Link",:url=>{:action=>:myaction},:with=>"'data='+$('#someField').attr('value')" %>

but with the new syntax in Rails 3 how should it be?

I'm trying something like

<%=link_to "My Link",{:action=>"myaction"},:with=>"'data='+$('#someField').attr('value');",:remote=>true%>

but I'm not getting the quantity params in the controller's action

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

三岁铭 2024-11-11 16:24:53

像这样的东西将发送一个值为 10 的“data”参数。

link_to "My Link", { :controller => 'myctrler', :action=>"myact", :data=> 10 }, :remote=>true

我以前从未见过/使用过 :with 选项。很抱歉我帮不上忙。

Something like this will send a "data" parameter with the value = 10.

link_to "My Link", { :controller => 'myctrler', :action=>"myact", :data=> 10 }, :remote=>true

I've never seen/used the :with option before. I'm sorry I can't help on that one.

您只需要在路径 url 中添加带有值的变量,例如:

<%= link_to "SEND DATA", "server_function?myData=10", remote: true %>

如果您需要发送多个参数,则必须使用 & 例如 ?myData=10& ;myOtherData=12,其中参数为值为 10 的 myData 和值为 12 的 myOtherData

you just need to add the variable with the value in the path url, for example:

<%= link_to "SEND DATA", "server_function?myData=10", remote: true %>

and if you need to send more than one parameter you must to use & for example ?myData=10&myOtherData=12, where the params are myData with the value of 10 and myOtherData with 12.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文