3

以下内容让我非常困惑:

第一个链接正确地没有使用涡轮链接,但没有发送查询第二个链接是相反的情况

 = link_to 'yesturbo_noquery', "/controller/action", "data-no-turbolink" => true,   query: "hello"
 = link_to "noturbo_yesquery", {'data-no-turbolink' => true, :controller => "controller", :action => "action", :query => "hello" }

我如何使两者都起作用?

编辑,这工作感谢 Sikachu

 = link_to 'yesturbo_yesquery', controller_action_path(:query => 'hello'), "data-no-turbolink" => true
4

2 回答 2

2

link_to方法实际上由 3 个部分组成:

link_to(name = nil, options = nil, html_options = nil, &block)

从您在那里编写的两个示例中,示例 1 混合query到 中html_options,示例 2 混合data-no-turbolinkoptions.

我认为如果您将其更改为此,它将起作用:

link_to 'noturbo_yesquery', {:controller => 'controller', :action => 'action', :query => 'query'}, :data-no-turbolink => true
于 2013-07-22T16:40:52.827 回答
2

我认为以下代码更正确:

<%= link_to('Product', @product, data: { no_turbolink: true }) %>

以下代码也将起作用:

<%= link_to('Product', @product, 'data-no-turbolink' => true) %>
于 2014-12-30T07:13:27.290 回答