抓住无效请求&用羽毛返回错误 - 续集

时间:2017-03-17 15:10:50

标签: feathersjs feathers-sequelize

我是羽毛新手,正在构建一个用羽毛cli生成的API。如果客户端执行无效的GET请求:

例如。 http://localhost:3030/stations/?asdfasdf

它返回500错误:

ER_BAD_FIELD_ERROR: Unknown column 'stations.asdfasdf' in 'where clause'

我宁愿不向客户报告这样的错误,而是希望返回错误请求' 400错误请求'代替。我已尝试使用hook.error设置后挂钩,但这并没有捕捉到续集错误。

如何捕获错误并向客户端返回更安全,更通用的消息?

1 个答案:

答案 0 :(得分:1)

error个钩子是一个单独的新钩子类型。使用1.x feathers-cli将services index file更改为

// Set up our before hooks
messageService.before(hooks.before);

// Set up our after hooks
messageService.after(hooks.after);

// Set up hooks
messageService.hooks(hooks);

然后在hooks/index.js file添加

exports.error = {
  all: [],
  find: [],
  get: [],
  create: [],
  update: [],
  patch: [],
  remove: []
};

您现在可以使用它来创建错误挂钩。对于你这样的情况:

const errors = require('feathers-errors');

exports.error = {
  all: [
    function(hook) {
      if(is(hook.error, 'ER_BAD_FIELD_ERROR')) { // Somehow check the Sequelize error type
        hook.error = new errors.BadRequest('Invalid query field');
      }
    }
  ],
  find: [],
  get: [],
  create: [],
  update: [],
  patch: [],
  remove: []
};