gpt4 book ai didi

ruby-on-rails - 更改 form_for 中标签上的文本

转载 作者:太空宇宙 更新时间:2023-11-03 18:00:07 25 4
gpt4 key购买 nike

我认为有这段代码(用于“辩论”课):

<%= form_for(@debate) do |f| %>
...
<%= f.label :proposition, :body %>
...
<% end %>

这在我的 en.yml 中:

helpers:
label:
debate:
body: "Testing label body"

我从这个页面复制:http://apidock.com/rails/ActionView/Helpers/FormHelper/label

期望它会导致 <label for="debate_body">Testing label body</label>被输出到页面,但我得到 <label for="debate_proposition">body</label>

我尝试了一些其他的东西,比如在 en.yml 中将“辩论”与“提议”交换,但没有成功。我做错了什么?

最佳答案

API中的例子没有使用form_for,所以需要传入对象给label。由于您确实使用了 form_for,因此可以跳过该参数。所以正确的方法是:

<%= form_for(@debate) do |f| %>
...
<%= f.label :proposition %>
...
<% end %>

和:

helpers:
label:
debate:
proposition: "Testing label body"

关于ruby-on-rails - 更改 form_for 中标签上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6659697/

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