gpt4 book ai didi

jquery - 使用 jQuery 读取 CSV 文件

转载 作者:行者123 更新时间:2023-12-01 04:53:39 25 4
gpt4 key购买 nike

我正在使用 IE8 和 jQuery 1.9.1。我希望用户选择一个 csv 文件。文件的内容应显示在警报中。到目前为止,我已经能够做到这一点:

function getCsv(filepath) {
$.ajax({
type: "GET",
url: filepath,
dataType: "text",
success: function(data) {
alert(data);
},
error: function(xhr, ajaxOptions, thrownError) {
alert("Status: " + xhr.status + " Error: " + thrownError);
}
});
};

$("#upload").click(function() {
var fname = $("#filename").val();
fname = fname.replace(/\\/g, "/");
fname = "file:///" + fname;
getCsv(fname);
});

当我直接打开 html 文件(通过双击该文件)时,效果非常好。但是当我将其部署在服务器(IIS 服务器)上时,它会发出错误警报。

我还使用了 jQuery.support.cors = true 来避免 CORS 问题。

最佳答案

参见:

关于jquery - 使用 jQuery 读取 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16715019/

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