How to add custom errors to the User errors collection?

前端 未结 4 1284
南方客
南方客 2021-01-31 02:59

How can I add errors to the User model manually?

Is it just @user.errors << \"some text goes here\" ?

4条回答
  •  隐瞒了意图╮
    2021-01-31 02:59

    WARNING

    If you just add errors in a separate method (not in a validation), then by default when you call .valid? or .save those errors will be automatically cleared. So you may want to use validation contexts instead.

提交回复
热议问题