我有一个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服务重定向?
答案 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();
}
}