我遇到了koa js和中间件订单的问题。
我'使用多个中间件,Koa-router,强大的koa-static-folder和一个用于设置标题。
现在,按照当前的顺序,当我通过API将文件从前端上传到后端时,它会抛出一个CORS错误,这意味着标题不存在(因此这个中间件没有正确加载)。
当我移动它们时,其他东西将停止工作。
这是我的代码:
this.app.use(serve({rootDir: './uploads', rootPath: '/public/uploads/'}));
this.app.use(router.routes());
this.app.use(formidable());
this.app.use((ctx, next) => {
// Website you wish to allow to connect
ctx.set('Access-Control-Allow-Origin', '*');
// Request methods you wish to allow
ctx.set('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
// Request headers you wish to allow
ctx.set('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
ctx.set('Access-Control-Allow-Credentials', "true");
// Pass to next layer of middleware
});
有人可以向我解释如何确定中间件的正确顺序吗?