gpt4 book ai didi

javascript - 如何使用javascript访问上传的文件?

转载 作者:行者123 更新时间:2023-12-02 15:25:24 25 4
gpt4 key购买 nike

我想从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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com