正如标题所述,我使用的是cloudinary的NPM软件包,我原本以为这是配置问题,但这是我第三次遇到此特定错误,似乎无法返回任何内容关于它,来自Google。
{ fieldname: 'name-of-input-key',
originalname: 'leaf.png',
encoding: '7bit',
mimetype: 'image/png' }
file uploaded to server
{ fieldname: 'name-of-input-key',
originalname: 'leaf.png',
encoding: '7bit',
mimetype: 'image/png',
destination: 'uploads/',
filename: 'leaf.png',
path: 'uploads/leaf.png',
size: 10227 }
/home/nolan/Node/cloudinary-skel/node_modules/cloudinary/lib/utils/index.js:989
return {...hash1, ...hash2};
^^^
SyntaxError: Unexpected token ...
at createScript (vm.js:74:10)
at Object.runInThisContext (vm.js:116:10)
at Module._compile (module.js:533:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:503:32)
at tryModuleLoad (module.js:466:12)
at Function.Module._load (module.js:458:3)
at Module.require (module.js:513:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/home/nolan/Node/cloudinary-skel/node_modules/cloudinary/lib/cloudinary.js:4:17)
我假设它没有运行Babel或其他东西,因为这些参数对于ES6来说是新的,但是我似乎无法弄清楚吗?预先感谢!
答案 0 :(得分:0)
现代ES6传播运算符上的代码已经破灭。您需要将babel与babel-loader一起使用来编译这些模块。
您将需要同时共享package.json和webpack.conifg.js的配置。
答案 1 :(得分:0)
因此,本周早些时候,我遇到了类似的问题。终于找到了解决该问题的方法,您可以尝试一下,看看它是否适合您。
因此,我在 package.json 文件中指定了 engines ,并将其设置为版本8,但将其更改为版本10后,一切正常。 / p>
欢呼