我是Koa的新手,我在代码中使用类结构,但我使用Koa-multer来读取文件,但是我无法使用.single的koa-multer方法进行文件归档,有谁能帮我这个忙吗?任何东西
constructor(app) {
this.App = app;
this.Job = new Job(app);
this.Upload = multer({ dest: '/tmp/' });
}
我的路由器如下
route.post('/job/image',this.Upload.single('file'),
(ctx) => {
return this.Job.addImage(ctx)
});