作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何更改必填字段的错误消息?如果我有这样的事情
@required_fields ~w(name email)
最佳答案
"can't be blank"
错误消息目前被硬编码到 Ecto 中。但是,您可以通过执行以下操作来替换此错误消息:
def changeset(model, params \\ :empty) do
model
|> cast(params, @required_fields, @optional_fields)
|> required_error_messages("no way it's empty")
end
def required_error_messages(changeset, new_error_message) do
update_in changeset.errors, &Enum.map(&1, fn
{key, "can't be blank"} -> {key, new_error_message}
{_key, _error} = tuple -> tuple
end)
end
关于elixir - 如何在 Phoenix 框架中为必填字段添加自定义错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32032246/
我是一名优秀的程序员,十分优秀!