如何在 Rails 中制作动态下拉菜单?
我正在开发一个电子商务项目,其中将有用于选择尺寸的单选按钮。我有一个数量下拉菜单。我想根据用户所选尺寸的可用库存使此下拉列表动态化。谁能告诉我如何在 Rails 上做到这一点?不会用大量的 javascript 扰乱我的视图文件!?
I'm working on a e-commerce project where there will be radio buttons for size selection. I have a dropdown for quantity. I want to make this dropdown dynamic based on stock available for the user selected size. Can anyone tell me how this can be done on Rails? without cluttering my view file with lot of javascript!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用带原型的 Rails 3(默认 afaik),您可以使用原型遗留帮助程序(Github 上的链接) 添加观察者并为下拉框渲染部分视图。您可以添加这样的观察者,
请务必根据您的情况调整
element_var_name
和操作。div_tag_to_update
是将随下拉框更新的 div。another_action_here
操作应该呈现如下所示的视图:在分部视图中,您可以使用元素列表来生成下拉框:
If you are using Rails 3 with prototype (default afaik), you could use the prototype legacy helpers (Link on Github) to add an observer and render a partial view for your dropdown box. You could add an observer like this
Be sure to adjust
element_var_name
and the action to your situation.div_tag_to_update
is the div that will update with the dropdown box. Theanother_action_here
action should render a view like this:In the partial view, you can use the element list to generate the dropdown box: