Skip to content
New issue

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

Didn't work with async function's try catch #26

Open
ablipan opened this issue Nov 15, 2015 · 1 comment
Open

Didn't work with async function's try catch #26

ablipan opened this issue Nov 15, 2015 · 1 comment

Comments

@ablipan
Copy link

ablipan commented Nov 15, 2015

(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.

@lykmapipo
Copy link
Owner

@ablipan
sails-hook-validation works only with model static methods only i.e

  • create()
  • createEach()
  • findOrCreate()
  • findOrCreateEach()
  • update()
    and other static model method that invoke Model.validate()

For instance method consider using sails-model-new

Hope it helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants