我想从js访问csv文件。
因此,我使用html中的POST表单标签上传了该文件。
比起我如何使用js来访问它呢?
最佳答案
通过简单的ajax请求,您可以做到。使用原始的Java脚本,您可以像这样访问文件。
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
var responseText = xhttp.responseText; //The responseText is the content of your file.
}
};
xhttp.open("GET", "/directory-of-uploaded-files/filename", true);
xhttp.send();
并与jQuery
$.ajax({
url: "/directory-of-uploaded-files/filename",
method: "get",
cache: false,
success: function(file_content){
console.log(file_content); //file_content is the content of your file.
},
error: function (e) {
alert("Error");
}
});
关于javascript - 如何使用javascript访问上传的文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33728999/