js 将url变量保存到json中方便修改

使用ajax调用后端时,如果将url写死,如果后端的ip地址改变,就需要一个一个修改。可以将这些ip地址写在一个json中,在使用ajax读取地址,就只需要维护这一个json了。

{

"baseURL": "http://202.120.40.28:4461"

}

$.ajax({

type:'GET',

url:  "config.json",

async:false,

contentType:"application/json; charset=utf-8",

dataType:"json",

success:function(result) {

address=result.baseURL;

},

error:function(result) {

console.log("config load error")

}

});

你可能感兴趣的:(js 将url变量保存到json中方便修改)