轨道 3 和select_tag - 如何加载数据

发布于 2024-12-10 10:53:13 字数 495 浏览 1 评论 0原文

我将我的菜单结构存储在数据库表中:

id | item | par
1  | A    | 0
2  | B    | 0
3  | C    | 1
4  | D    | 1

我想如何获取我的 SELECT 选项,该语句为:

A
B
A -> C
A -> D

我可以将语句设置为:

A
B
C
D

使用以下命令:

<%= select("menu_item", "menu_id", Menu.all.collect {|p| [ p.item, p.id ] }, {:include_blank =>; ''}) %>

但我找不到一种方法,如何实现中间示例中的语句...我想问你-有人可以帮助我解决这个问题吗?

先感谢您。

I stored my menu structure in DB table as:

id | item | par
1  | A    | 0
2  | B    | 0
3  | C    | 1
4  | D    | 1

I think abou the way, how to get to my SELECT options the statement as:

A
B
A -> C
A -> D

I am able to make the statement as:

A
B
C
D

with using the following command:

<%= select("menu_item", "menu_id", Menu.all.collect {|p| [ p.item,
p.id ] }, {:include_blank => ''}) %>

But I can't find a way, how to achieve the statement as in the middle example... I would like to ask you - could anyone help me, please, with this problem?

Thank you in advance.

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

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

发布评论

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

评论(1

墨落画卷 2024-12-17 10:53:13

您可能需要一个创建所需标签的助手。因此,如果您将助手命名为 full_item_name,那么您将拥有

<%= select("menu_item", "menu_id", Menu.all.collect {|p| [ full_item_name(p.item), p.id ] }, {:include_blank => ''}) %>

You'd probably want a helper which creates the desired label. So if you named your helper full_item_name, you'd have

<%= select("menu_item", "menu_id", Menu.all.collect {|p| [ full_item_name(p.item), p.id ] }, {:include_blank => ''}) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文