我收到以下错误: no such as file or directory public/uploads/bae1774e-d6dc-454b-ba63-a4c8c53d3053.png当我使用通过ZEIT托管的multer将图像上传到服务器(nodejs)时const multerMultiple = { storage: multer.diskStorage({ destination: (req, file, callback) => { callback(null, "./public/uploads"); // I think the problem here }, filename: (req, file, callback) => { const extension = file.mimetype.split("/")[1]; const name = `${uuid.v4()}.${extension}`; callback(null, name); } })};上面的配置在本地完美运行,而node js在本地运行现在.json{ "name": "application-name", "version": 2, "builds": [ { "src": "index.js", "use": "@now/node-server" }, { "src": "./public/uploads", "use": "@now/static" } ], "routes": [{ "src": "/.*", "dest": "/index.js" }], "env": { .../ env here }}源视图:这意味着显示公共目录那么知道为什么在托管节点 js 时我会遇到所提出的问题吗?ZEIT 现在配置中缺少某些内容或与我的代码相关的内容吗?
添加回答
举报
0/150
提交
取消