gpt4 book ai didi

ruby-on-rails - simple_form : specify id of text field

转载 作者:行者123 更新时间:2023-12-04 22:49:11 28 4
gpt4 key购买 nike

我有下面的简单 simple_form。我正在尝试将输入字段的 ID 设为“my-id”,但下面的解决方案不起作用(id 为“comment_body”)。如何指定该输入字段的 id?

= simple_form_for(@comment) do |f|
= f.input :body, as: :string, html: {id: "my-id"}
= f.button :submit

我也试过
    = f.input :body, as: :string, id: "my-id"

无济于事。

最佳答案

:input_html 有效,而不是 :html

 = f.input :body, as: :string, input_html: {id: "my-id"}

关于ruby-on-rails - simple_form : specify id of text field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11572989/

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