如何从feathers.js服务重定向

时间:2018-03-09 13:02:29

标签: node.js feathersjs

我有一个feathers.js服务,我需要在使用post

时重定向到特定页面
class Payment {
   // ..
   create(data, params) {
      // do some logic
      // redirect to an other page with 301|302

      return res.redirect('http://some-page.com');
   }
}
  

是否可以从feathers.js服务重定向?

2 个答案:

答案 0 :(得分:2)

找到一种以更友好的方式做到这一点的方法:

假设我们有自定义服务:

app.use('api/v1/messages', {
  async create(data, params) {
    // do your logic

    return // promise
  }
}, redirect);

function redirect(req, res, next) {
  return res.redirect(301, 'http://some-page.com');
}

背后的想法是feathers.js使用快速中间件,逻辑是下面的。

如果链接的中间件是Object,那么在您可以链接任意数量的中间件后,它将被解析为服务。

app.use('api/v1/messages', middleware1, feathersService, middleware2)

答案 1 :(得分:1)

我不确定羽毛会有多少良好做法,但您可以在羽毛res上粘贴params对象,然后随意使用它

// declare this before your services
app.use((req, res, next) => {
    // anything you put on 'req.feathers' will later be on 'params'
    req.feathers.res = res;

    next();
});

然后在你的课堂上:

class Payment {
    // ..
    create(data, params) {
    // do some logic
    // redirect to an other page with 301|302
    params.res.redirect('http://some-page.com');

    // You must return a promise from service methods (or make this function async)
    return Promise.resolve();
    }
}