我正在尝试将 checkit 与书架一起使用,并且在添加了 checkit 规则后,故意违反了它们,我的 promise#catch 块似乎没有正确捕获错误。 (我也可能完全误解了这里使用 catch )

var validationRules = new Checkit({
    email: 'required',
    password: 'required'
});

var User = bookshelf.Model.extend({
    tableName: 'users',

    initialize: function() {
        this.on('saving', this.validateSave);
    },
    validateSave: function() {
        validationRules.run(this.attributes);
    }
});

User.forge({}).save().then(function(validated) {
    console.log('this shouldnt trigger');
}).catch(function(err) { // this doesnt seem to be working the way I expect
    console.log(e.message);
});

当我创建空的用户对象时,我收到以下未处理的错误堆栈跟踪,并且还看到正在构建的数据库查询(这可能是书架项目的一个单独问题,以及当您连接到“保存”事件时会发生什么)

Possibly unhandled Checkit Errors - email: The email is required; password: The password is     required
    at checkit/checkit.js:105:23
    at tryCatch1 (bluebird/js/main/util.js:45:21)
    at Promise._callHandler (bluebird/js/main/promise.js:597:13)
    at Promise._settlePromiseFromHandler (bluebird/js/main/promise.js:607:18)
    at Promise._settlePromiseAt (checkit/node_modules/bluebird/js/main/promise.js:769:18)
    at Promise._settlePromises (checkit/node_modules/bluebird/js/main/promise.js:884:14)
    at Async._drainQueue (checkit/node_modules/bluebird/js/main/async.js:98:12)
    at Async._drainQueues (checkit/node_modules/bluebird/js/main/async.js:103:10)
    at Async.drainQueues (checkit/node_modules/bluebird/js/main/async.js:37:14)
    at process._tickCallback (node.js:415:13)
{ __cid: '__cid1',
  method: 'insert',
  options: undefined,
  bindings: [],
  sql: 'insert into `users` () values ()' }
ER_NO_DEFAULT_FOR_FIELD: Field 'email' doesn't have a default value

我有两个问题:
  • 由于我在 knex 配置中打开了 debug: true,堆栈跟踪和 ER_NO_DEFAULT_FOR_FIELD 之间的块似乎是准备好的 SQL 语句。鉴于我引入了 Checkit 来捕获模型级别的验证错误,为什么 SQL 仍在执行?
  • 我是否以正确的方式使用 #catch 块?如果是这样,为什么我仍然会收到未处理的错误堆栈跟踪。 (看起来好像由#catch 函数产生的 e.message 实际上来自 MySQL 而不是 Checkit)如果不是,那么在这里更优雅地处理错误的正确方法是什么?

  • 到目前为止,我的主要信息来源是 bookshelf.js 文档( http://bookshelfjs.org/ )和 Checkit 存储库( https://github.com/tgriesser/checkit )

    最佳答案

    Checkit 返回 promise , promise 使用返回值相互协作,因此通过在 return 之后没有 checkit.run 您不会让书架知道验证何时完成。

    Bluebird(潜在的 promise )让您知道您可能会遇到您不知道的拒绝。为了更正您需要更改的代码:
    validationRules.run(this.attributes);
    至:
    return validationRules.run(this.attributes);
    在您的 validateSave 函数中,以便 promise 可以链接。

    关于error-handling - Checkit 与书架,如何捕获错误并停止 DB 执行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27737115/

    10-11 23:54