0

我正在尝试将标题放在文档中描述的 html_options 中:

link_to shop_path(@shop, html_options = {title: "Hola el mundo") do
    content_tag( :span, "Hello", class: "some_class") + " " +
    content_tag( :span, truncate(@shop.name, length: 37))
end

但它不起作用。我在哪里将 title 属性放在 link_to 块中?

4

1 回答 1

3

HTML 属性可以作为 的选项传递link_to,而不是_path像你这样的帮助器:

link_to shop_path(@shop), title: "Hola el mundo" do
  content_tag( :span, "Hello", class: "some_class") + " " +
  content_tag( :span, truncate(@shop.name, length: 37))
end
于 2013-09-14T19:05:41.837 回答