我在一个位置存储了一个pdf文件,我想使用jQueryAjax将该文件上传到另一台服务器。
例如:
我的pdf地址是:http://localhost:3030/sales-print.php?sales_id=123
我想把那个动态pdf文件上传到http://localhost:5600/api/upload-发票
简单的文件上传系统如下所示:
const uploadFile = ""; // how do I get data from http://localhost:3030/sales-print.php?sales_id=123 ?????
const formData = new FormData();
formData.append("file", uploadFile);
$.ajax({
url: "http://localhost:5600/api/upload-invoice",
dataType: 'json',
contentType: false,
processData: false,
data: formData,
method: "POST",
success: function(response) {
console.log('Success!!');
},
error: function(error) {
console.log("Error");
}
});
我怎样才能做到这一点。
暂无答案!
目前还没有任何答案,快来回答吧!