We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(async function() { try { // update Store if (paramStore.id) { const finded = await Store.findOne(paramStore.id); _.assign(finded, paramStore); finded.save(); }else { // add Store await Store.create(paramStore); } return res.ok(); } catch (err) { sails.log.error(err); sails.log.error(err.Errors); return res.serverError(err); } })();
the err.Errors is undefined.
err.Errors
The text was updated successfully, but these errors were encountered:
@ablipan sails-hook-validation works only with model static methods only i.e
sails-hook-validation
create()
createEach()
findOrCreate()
findOrCreateEach()
update()
Model.validate()
For instance method consider using sails-model-new
Hope it helps.
Sorry, something went wrong.
No branches or pull requests
the
err.Errors
is undefined.The text was updated successfully, but these errors were encountered: