我有一个使用以下 javascipt 加载 config.json 文件的移动网站:
$.ajax({
type:'GET',
url: '/config.json',
contentType: 'plain/text; charset=UTF-8',
dataType: 'json',
success: function(data){
},
error: function(jqXHR, textStatus, errorThrown){
},
complete: function(jqXHR, textStatus){
initConfig($.parseJSON(jqXHR.responseText));
}
});
我希望能够根据环境加载不同的 config.json 文件。例如,qa.site.com、staging.site.com 和 www.site.com。目前javascript只加载一个文件,其内容只能是qa.site.com、staging.site.com或www.site.com。如何修改此现有代码以适用于所有三种环境?