Rails:手动更改 select() 帮助器中的选择顺序?

发布于 2024-09-10 12:58:19 字数 662 浏览 3 评论 0原文

我有以下 select() 表单帮助器方法:

select("treatment", "frequency_unit", { "hour" => "hour", "day" => "day", "week" => "week", "month" => "month", "year" => "year" })

该帮助器看似随机地组织选择...我希望它能够保持上面列出的选择顺序。

我怎样才能做到这一点?

这是上面代码的输出:

<select id="treatment_frequency_unit" name="treatment[frequency_unit]">
  <option value="month">month</option>
  <option value="week">week</option>
  <option value="hour">hour</option>
  <option value="day">day</option>
  <option value="year">year</option>
</select>

I've got the following select() form helper method:

select("treatment", "frequency_unit", { "hour" => "hour", "day" => "day", "week" => "week", "month" => "month", "year" => "year" })

The helper is organizing the choices seemingly randomly...I'd like it to maintain the order of the choices as I have them listed above.

How can I make that happen?

Here's the output of the code above:

<select id="treatment_frequency_unit" name="treatment[frequency_unit]">
  <option value="month">month</option>
  <option value="week">week</option>
  <option value="hour">hour</option>
  <option value="day">day</option>
  <option value="year">year</option>
</select>

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

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

发布评论

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

评论(1

伤感在游骋 2024-09-17 12:58:19

使用数组代替哈希

<%= select("treatment", "frequency_unit", %w{hour day week month year})%>

Instead of the hash, go for an array

<%= select("treatment", "frequency_unit", %w{hour day week month year})%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文