Simple_form 渲染后不加载集合 error_message

发布于 2025-01-01 22:29:11 字数 372 浏览 3 评论 0原文

在我的创建用户视图中,

<%= simple_form_for @user do |f| %>
<%= render 'shared/error_messages', :object => f.object %>

<%= f.input :size, :collection => @plan, :label_method => :details, 
:value_method =>:name,:include_blank => false %>

集合/列表加载良好。如果用户输入错误的值并且我的页面重新加载并显示错误通知,则 :size 字段将作为数字输入字段而不是我的集合/列表重新加载。

In my create user view

<%= simple_form_for @user do |f| %>
<%= render 'shared/error_messages', :object => f.object %>

<%= f.input :size, :collection => @plan, :label_method => :details, 
:value_method =>:name,:include_blank => false %>

Collection/list loads fine. If a user inputs the wrong value and my the page reloads with the error notification, the :size field reloads as a numeric input field and not with my collection/list.

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

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

发布评论

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

评论(1

浅黛梨妆こ 2025-01-08 22:29:11

您确定发生错误时您的控制器仍在分配 @plan 吗?您可以通过将以下内容添加到视图中来转储 @plan 值来确认这一点:

<%= debug(@plan) %> 

Are you sure your controller is still assigning @plan when an error occurs? You can confirm that by adding the following to your view to dump the @plan value:

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