0

我的页面中有很多表格。我想将它们合并到一个对象中并将它们提交到一个对象中。但是我发现serializeArray()还是serialize()不符合我的要求,serializeArray 函数会生成一个数组对象,并且序列化被 get model 使用,它不是一个对象。

是否有 jquery 或本地函数可以将它们合并到一个对象中。

我有一个解决方案,但它并不完美,循环serializeArray生成的数组对象,用于$.extend将它们合并到一个对象中。有没有更好的方法?

请帮忙,谢谢。

4

1 回答 1

0

我自己找到了解决方案,我模仿了序列化功能并创建了一个简单的插件。如有不足请指出,谢谢

(function($) {
$.fn.paramJson = function(a, traditional) {
    var prefix, s = [], add = function(key, value) {
        // If value is a function, invoke it and return its value
        value = $.isFunction(value) ? value() : (value == null ? ""
                : value);
        s[s.length] = "\"" + encodeURIComponent(key) + "\"" + ":" + "\""
                + encodeURIComponent(value) + "\"";
    };

    // Set traditional to true for jQuery <= 1.3.2 behavior.
    if (traditional === undefined) {
        traditional = $.ajaxSettings
                && $.ajaxSettings.traditional;
    }

    // If an array was passed in, assume that it is an array of form
    // elements.
    if ($.isArray(a) || (a.jquery && !$.isPlainObject(a))) {
        // Serialize the form elements
        $.each(a, function() {
            add(this.name, this.value);
        });

    } else {
        // If traditional, encode the "old" way (the way 1.3.2 or older
        // did it), otherwise encode params recursively.
        for (prefix in a) {
            buildParams(prefix, a[prefix], traditional, add);
        }
    }

    // Return the resulting serialization
    return "{" + s.join(",").replace(r20, "+") + "}";
};
$.fn.serializeJson = function() {
    return $.parseJSON($.paramJson( this.serializeArray()));
};      

})(jQuery)

于 2013-10-29T01:48:29.797 回答