gpt4 book ai didi

javascript - 如何读取 json 配置文件并将该参数设置为 ajax

转载 作者:行者123 更新时间:2023-11-30 21:04:07 24 4
gpt4 key购买 nike

我有一个 Json(config/server.json) 配置文件,其中包含服务器配置。例如:

{
"server": "127.0.0.1"
}

我想读取“服务器”参数并将该值分配给我的其他 jquery 函数。

例如:

  var server = "";

$(document).ready(function() {
loadConfigFile();
loadCustomers();
});

function loadConfigFile() {
$.getJSON('config/server.json', function(jd) {
$.each(data.server, function(i,s){
alert(s);
});
});
};

function loadCustomers() {
$
.ajax({
type : 'GET',
url : server+':8080/cache/getCustomers',
...
}

我的 loadConfig 文件没有读取 JSOn 文件。我在这里做错了什么?

最佳答案

确保/config/server.json 由服务器和有效地址公开。您可以通过添加到浏览器来尝试。它应该显示整个文件内容。下一步,检查浏览器控制台是否有错误..

检查 this

$(document).ready(function() {
$.getJSON('config/server.json', loadCustomers);
});

function loadCustomers(configFile) {
$.ajax({
type : 'GET',
url : configFile.server+':8080/cache/getCustomers',
});
}

关于javascript - 如何读取 json 配置文件并将该参数设置为 ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46840238/

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