0

我的.split();方法有问题。

我称这个函数为:

get_content_ajax("html/settings.html", "#ajax", 1, "Settings page have been loaded.", "place_settings", "'settings', 'api_username', 'api_password', 'hmm, ja', 'settings'");

以下是相关功能:

function get_content_ajax(load, element, set_status, status, success_function, success_function_values) {
    element = typeof element !== 'undefined' ? element : "#ajax";
    set_status = typeof set_status !== 'undefined' ? set_status : 0;
    status = typeof status !== 'undefined' ? status : "";
    success_function = typeof success_function !== 'undefined' ? success_function : null;
    success_function_values = typeof success_function_values !== 'undefined' ? success_function_values : "";
    $("#work-station").load(load, function(response, status, xhr) {
        if (status == "success") {
            if (set_status == 1) {
                insert_to_element(element, response);
                stop_loading_img("loader");
                start_loading_img("done");
                set_loading_status(status);
                if (success_function != null && success_function != 0) {
                    window[success_function](success_function_values);
                }
            }
        } else { // status = "error"
            no_connection();
        }
    });
}


function place_settings(id, settings, default_values, page) {
    var s = settings.split(', ');
    var d = default_values.split(', ');
    $.each(s, function(index, value) { 
        //alert(index + ': ' + value + " - default value: " + d[index]); 
        insert_to_element("#" + id + " .", get_setting(value, d[index]));
    });
}

然后我运行它,我收到以下错误:

Uncaught TypeError: Cannot call method 'split' of undefined 

我注意到,id出于某种原因,该变量具有来自所有变量的所有信息。希望这可以帮助。

OBS:我希望我的代码和我的问题一样有意义。

4

2 回答 2

2

您只传递一个值:

if (success_function != null && success_function != 0) {
                    window[success_function](success_function_values);
}

所以第一个参数(id)得到它。你需要做的是:

function place_settings(data) {
   //now data contains all the information you need and you can get the values from it

var id = data['id'];
...
    });
}
于 2013-01-02T16:25:51.270 回答
1

我认为您没有在函数调用中传递正确的参数

place_settings

这就是为什么要么settings是未定义的,要么是default_values在你的

place_settings function.
于 2013-01-02T16:25:05.713 回答