简体   繁体   中英

Cakephp how to get callback validation error message from model

I'm trying to get validation error message from model and display this in json output. Is there a way we can catch this callback in variables?

you can access the validation messages in the controller:

$errors = $this->Model->validationErrors;

then you can use it for whatever you like

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM