使用带有pluginaweek/state_machine的collection_select设置我的状态

发布于 2024-12-06 11:22:09 字数 266 浏览 0 评论 0原文

如何创建一个collecton_select下拉列表来设置表单中资源的状态?

现在我有

<%= f.collection_select :state, Ticket.state.all, :event, :state_name_humanize, :prompt => true %>

(pluginaweek可以制作一个“state_machine入门”教程吗,我真的很喜欢使用它,但我是一个nube......)

How do I create a collecton_select drop down to set the state of a resource in a form?

right now I have

<%= f.collection_select :state, Ticket.state.all, :event, :state_name_humanize, :prompt => true %>

(could pluginaweek make a 'getting started with state_machine' tutorial, I am really hot on using it, but I am a nube . . .)

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

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

发布评论

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

评论(1

ペ泪落弦音 2024-12-13 11:22:09

示例 中,集合选择应如下所示:<%= f.collection_select :access_state_event, @user.access_state_transitions, :event, : human_event, :include_blank => “不要更改”%>

还想查看活动记录的简单示例/教程

From the example a collection select should look like this: <%= f.collection_select :access_state_event, @user.access_state_transitions, :event, :human_event, :include_blank => "don't change" %>

Would also like to see a simple example/tutorial for active record

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