我正在尝试将标题放在文档中描述的 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 块中?