因此,我尝试使用formData发送文件,但无法使其正常运行。
Contract.forEach(function (Contract, index) {
Contract.Price(function (error, result) {
TheCurrentPrice[index] = result;
});
});
Index.php检查$ _POST [' ajax'] ==' fileUpload'并上传文件,如果是的话。
我的代码在大多数文件上都能正常运行,但每当我尝试上传PSD文件时,我的index.php都会收到一个空的$ _POST和$ _FILES数组。我抬头查看了文档,但找不到任何内容。
非常感谢!