了解FeathersJS钩子

时间:2016-05-11 03:55:27

标签: feathersjs

我跟随the tutorial。在Asynchronous hooks中,有一个这样的代码段:

todoService.before({
  find(hook) {
    return this.find().then(data => {
      hook.params.message = 'Ran through promise hook';
      hook.data.result = data;
      // Always return the hook object
      return hook;
    });
  }
});

请您告诉我this.find()应该做什么?

1 个答案:

答案 0 :(得分:3)