我正在学习使用Node.js和multer上传文件。我已经配置了主app.js文件,以及upload.html。
我的表格:
<form id="uploadForm" action="/uploads" enctype="multipart/form-data" method="post">
<input id="upload-input" type="file" name="uploads" multiple>
<button class="upload-button" type="button">File</button>
</form>
和script.js我试图处理表单数据并使用fetch()发布它:
uploadInput.addEventListener('change', function() {
let files = event.target.files;
if(files.length > 0) {
let formData = new FormData();
for(let i = 0; i < files.length; i++) {
let file = files[i];
formData.append('uploads', file);
}
fetch('uploads', {
method: 'POST',
body: formData
})
.then(res => res.json(), error => error.message);
}
});
文件正在上传,除了两个错误外,一切都很好。 首先在浏览器控制台显示:
uploader:1 Uncaught (in promise) SyntaxError: Unexpected token s in JSON at position 0
WebStorm IDE控制台中的第二个:
(node:51729) [DEP0013] DeprecationWarning: Calling an asynchronous function without callback is deprecated.
你知道为什么它会抛出错误,而一切正常吗?
答案 0 :(得分:1)
看起来问题出在.then(res => res.json(), error => error.message);
JSON解析错误几乎可以肯定是因为您没有在回复中获得JSON。很难说出您为什么会收到弃用警告,但这可能与您的.then()
电话有关。对于两者,请对结果执行一些有用的操作,例如console.log(res)
和console.log(error)
。