gpt4 book ai didi

ruby-on-rails - 给 link_to 添加样式

转载 作者:行者123 更新时间:2023-12-04 07:29:55 25 4
gpt4 key购买 nike

我不喜欢 link_to 助手和类似的东西。我正在尝试向我的链接添加样式,但我无法做到,因为根据文档,参数是选项和 html_options,但是我使用的一些参数甚至没有在 的文档中列出link_to 所以我不知道哪些是选项,哪些是 html_options 所以我无法重新排列哈希。

<%= link_to '+', :controller => 'shop', :action => 'add', :id => product, :remote => true %>

我应该如何重新排列哈希以允许我添加 :styles => 'color:red;.....'

最佳答案

这会起作用

<%= link_to '+', {:controller => 'shop', :action => 'add', :id => product, :remote => true}, :style=>'color: red;' %>

但是有什么理由不使用路由生成的路径吗?

您可以在终端中运行 rake routes 以查看可用的路径。或者,如果您知道您正在寻找的 Controller ,例如 rake routes | grep shop 将为您缩小结果范围。

然后你可以这样做:

<%= link_to '+', add_shop_path(product), :style=>'color: red;' %>

关于ruby-on-rails - 给 link_to 添加样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23413206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com