0

我有一个使用以下 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。如何修改此现有代码以适用于所有三种环境?

4

2 回答 2

0
function getConfigFile() {
    switch (window.location.host.split(':')[0]) {
        case 'qa.site.com':
            return 'config-1.json';
        case 'www.site.com':
        case 'site.com': // optional, remove if incorrect
            return 'config-2.json';
        default:
            return 'config-default.json';
    }
}

$.ajax({
   // ...
   url: getConfigFile(),
   // ...
});
于 2013-11-04T20:35:57.317 回答
0

在玩够了之后,我找到了答案:

// Check URL address and set appropriate config.json file 
    var whichjson = (window.location.host);
    var configurl = '';

    function getConfigFile(configurl) {
    switch (whichjson) {
        case 'qa.site.com':
            var configurl = '/config-qa.json';
            return configurl;
            break;
        case 'staging.site.com':
            var configurl = '/config-stg.json';
            return configurl;
            break;
        default:
            var configurl = '/config-default.json';
            return configurl;
            break;
         }
    }

    // _request('/config.json', 'getLocalData', 'POST', '/', initConfig, false);
    $.ajax({
        type:'GET',
        url: getConfigFile(),
        contentType: 'plain/text; charset=UTF-8',
        dataType: 'json',
        success: function(data){
        },
        error: function(jqXHR, textStatus, errorThrown){
        },
        complete: function(jqXHR, textStatus){
            initConfig($.parseJSON(jqXHR.responseText));
        }

    }
    );
于 2013-11-04T22:37:36.370 回答