美好的一天,我有一个用于将字段和文件发送到 node.js 服务器的表单。在服务器上,由Formidable解析的数据。一切正常,但是在提交表单后,它会加载一个带有响应的页面。有谁知道使用标准表单机制发送数据而不重新加载页面的方式(带有序列化的 jQuery ajax 方法由于表单中的文件而不起作用)或者在服务器上写入这样的响应,因此它不会触发页面重新加载。形式:
<form action="/upload" enctype="multipart/form-data" method="post" id="eventForm">
<label>Date</label>
<input type="text" name="date"/>
<label>Image</label>
<input type="file" multiple="multiple" name="picture" />
<input type="submit" value="Submit!" />
</form>
服务器端:
app.post('/upload', function (req, res) {
var form = new formidable.IncomingForm();
// save file code goes here
form.parse(req, function(err, fields, files) {
//response code goes here
res.send('done');
});
});
有没有更好的方法来做到这一点?谢谢!