gpt4 book ai didi

ruby-on-rails - 使用枚举时修改 simple_form 输入中显示的文本

转载 作者:行者123 更新时间:2023-12-04 06:01:08 24 4
gpt4 key购买 nike

我正在使用 simple_form 来管理我的用户。为了选择用户角色,我使用输入为::radio_button。

该集合来自用户模型上的枚举。如何修改文本以显示诸如“ super 管理员”而不是 super 管理员之类的特定内容?

_form.html.slim

= form.input :role, collection: User.roles, as: :radio_buttons, item_wrapper_class: 'btn btn-default', checked: User.roles[user.role], required: true

用户名
  enum role: [:super_admin, :admin, :generic]

最佳答案

您可以使用 label_method选项与集合

= form.input :role, collection: User.roles, label_method: lambda {|k| k.humanize}, as: :radio_buttons, item_wrapper_class: 'btn btn-default', checked: User.roles[user.role], required: true

关于ruby-on-rails - 使用枚举时修改 simple_form 输入中显示的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32702828/

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