// koa里执行异步的时候,需要在function里加async
// 然后 await 异步方法;
router.get("/", async function(ctx, next) {
var str = null;
// 执行异步
await readDocument().then(data => {
str = data;
});
// jsonp
ctx.body = "good(" + str + ")";
});
koa异步执行后发送data
最新推荐文章于 2023-09-05 14:41:40 发布