koa2.0.0 表单提交 - 基础处理
对于koa2.0.0的表单提交如何处理,也是费了我很久的时间,在多次尝试与研究之下,可以这样来处理:
proxy.post('/admin/:path', (ctx, next) => {
const url = ctx.config.hostDomain + '/admin/' +ctx.params.path;
const options = {
timeout: ctx.config.httpTimeout,
method: ctx.request.method,
headers: ctx.request.headers,
data: ctx.request.body
};
return next().then(() => {
const request = urllib.request(url, options);
return request.then( (data) => {
ctx.body = data.data.toString()
});
}).catch((err) => {
console.log(err);
});
});
我这里只是做了一个接口的调用,其实最重要的是在获得request后如何去进行对应的promise的操作和获取结果,这里其实很简单的:
return next().then(() => {
const request = urllib.request(url, options);
return request.then( (data) => {
ctx.body = data.data.toString()
});
}).catch((err) => {
console.log(err);
});
注意这里的两个return操作,做完request的操作后,直接在开头进行一个return操作就可以了,这样body的值也回调过去了。
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/709
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/709