我知道 form.parse(req, ...) 将在单击“提交”按钮时解析传入的“表单发布”请求。如果我想通过对文件对象使用 ajax 调用来模拟“单击提交按钮”,我该怎么做?
我这样写但现在工作
$('#uploadFilesInput').change(function() {
var fileObjs = $(this).val();
window.alert(fileObjs);
$.ajax({
url: "/upload",
context: fileObjs,
method: "POST"
}).done(function() {
window.alert("test")
});
});
感谢任何帮助。