gpt4 book ai didi

javascript - 如何从 Jquery/JS 中的文本文件中读取数据以将其显示在 html 页面中?

转载 作者:行者123 更新时间:2023-11-27 23:26:24 25 4
gpt4 key购买 nike

{
"symbol": "BPCL",
"series": "EQ",
"openPrice": "1,020.00",
"highPrice": "1,041.95",
"lowPrice": "1,016.55",
"ltp": "1,040.55",
"previousPrice": "1,013.45",
"netPrice": "2.67",
"tradedQuantity": "3,76,694",
"turnoverInLakhs": "3,892.87",
"lastCorpAnnouncementDate": "13-Jul-2016",
"lastCorpAnnouncement": "Bonus 1:1"
}

这是在 gainers.txt 文件中给出的示例数据 我想解析这些信息并将其存储在单独的变量中,例如 var symbol 应该将所有符号存储在 txt 文件中这样我就可以稍后在我的代码中处理这些变量。

最佳答案

您需要添加一个数据类型:

$(document).ready(function() {
$.ajax({
url : "mytext.txt",
dataType: "text",
success : function (data) {
$(".text").html(data);
var jsonData = JSON.parse(data);
}
});
});

您可以使用 jsonData 作为数据 json 对象格式,或者使用 data 作为文本格式。

关于javascript - 如何从 Jquery/JS 中的文本文件中读取数据以将其显示在 html 页面中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38298828/

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