我想在 ruby​​ on Rails 的下拉列表中的名称开头添加编号

发布于 2025-01-09 01:43:26 字数 332 浏览 1 评论 0原文

写了这样的内容,

@agendas = @agendas.each{ |e| puts e.name }
      @agenda_alpha = @agendas.each_with_index.map { |agenda_key, i| ["#{i+1}.#{agenda_key}"] }

在我的控制器中,我在我的 slim 文件中

label_method: ->(agenda) { @agenda_alpha },

这是我的 Rails 控制台中的属性,

我必须将名称属性提取到下拉列表中

in my controller i have written like this

@agendas = @agendas.each{ |e| puts e.name }
      @agenda_alpha = @agendas.each_with_index.map { |agenda_key, i| ["#{i+1}.#{agenda_key}"] }

in my slim file i wrote this

label_method: ->(agenda) { @agenda_alpha },

This are the attributes in my rails console

i have to fetch the name attribute into the dropdown

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界等同你 2025-01-16 01:43:26

首先在控制器或助手中将选项转换为所需的格式可能是有意义的。

@options = %w[Apple Ball Cat]
@options = @options.each_with_index.map { |value, i| ["#{i}.#{value}", value] }
#=> [["0.Apple", "Apple"], ["1.Ball", "Ball"], ["2.Cat", "Cat"]]

然后只需在您的视图中使用此 @options 即可:

f.select(:attribute_name, @options)

It probably makes sense to translate the options into the required format in the controller or a helper first.

@options = %w[Apple Ball Cat]
@options = @options.each_with_index.map { |value, i| ["#{i}.#{value}", value] }
#=> [["0.Apple", "Apple"], ["1.Ball", "Ball"], ["2.Cat", "Cat"]]

Then just use this @options in your view:

f.select(:attribute_name, @options)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文