如何将 JavaScript 文件变量上传到服务器?
How to upload a JavaScript file variable to a server?
我在 Javascript 中有一个变量,它是一个加密的上传文件。将该变量上传到 Web 服务器的最佳选择是什么?我试过 simpleUpload.js 但似乎无法使 encryptedFile.simpleUpload("upload.php")
工作。该文件是有效的,因为我可以下载它并解密它。谢谢。
最好的选择是使用ajax上传到服务器
$ajax({
type : "POST",
url : "upload.php",
data: "put the encrypted file here",
success: function(response){
// what you want to happen after success is returned
},
error : function(error){
// handle any error response here
}
});
我在 Javascript 中有一个变量,它是一个加密的上传文件。将该变量上传到 Web 服务器的最佳选择是什么?我试过 simpleUpload.js 但似乎无法使 encryptedFile.simpleUpload("upload.php")
工作。该文件是有效的,因为我可以下载它并解密它。谢谢。
最好的选择是使用ajax上传到服务器
$ajax({
type : "POST",
url : "upload.php",
data: "put the encrypted file here",
success: function(response){
// what you want to happen after success is returned
},
error : function(error){
// handle any error response here
}
});