gpt4 book ai didi

ruby-on-rails - link_to中的“数据类型”参数

转载 作者:行者123 更新时间:2023-12-04 22:08:19 25 4
gpt4 key购买 nike

是否有以下快捷方式:

link_to 'title', path, 'data-type' => :html


我认为 :type=>:html可以工作,就像 :remote=>true转换为 data-remote='true'一样,但不受支持。

最佳答案

是:

link_to 'title', path, data: { type: :html }


小编辑

它来自标签助手: http://api.rubyonrails.org/classes/ActionView/Helpers/TagHelper.html#method-i-tag

在您的情况下,它可能不是捷径,但是如果您必须设置多个数据属性,则可能非常方便:

link_to 'title', path, data: { first_name: @user.first_name, 
last_name: @user.last_name,
# etc. }


但是不,没有 type: :html,对不起...

关于ruby-on-rails - link_to中的“数据类型”参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8612142/

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