EGL_NO_CONTEXT
这会在我的simple_form中显示正常,方法是在输入字段正下方显示“1. validates :note, presence: true, length: { minimum: 6, maximum: 140 }
”或“too short!
”错误消息。
too long!
表单代码:
2. validates :user_id, uniqueness: { scope: [:year, :month, :day], message: "one person only allow one entry every day" }
这会以常规形式显示,但不是在我的simple_form中,我不知道为什么?
提前多多感谢!
<%= simple_form_for(@worktime) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :note, label: false, as: :text, placeholder: 'please comment here' %>
<%= f.submit 'submit' %>
</div>
<% end %>