3

我的任务是进行用户编辑。我这样做了。但我不能将值作为 json 对象传递。我怎样才能加入两个值。我的第一个对象是

$.fn.serializeObject = function()
{
    var o = {};
    var a = this.serializeArray();
    $.each(a, function() {
        if (o[this.name] !== undefined) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        }
        else {
                
                o[this.name] = this.value || '';
        }
    });
    
    return o;
};

我的第二个目标是

var location = function() {
    var self = this;
    self.country = ko.observable();
    self.state = ko.observable();
};
 
var map = function() {

    var self = this;
    self.lines = ko.observableArray([new location()]);
    self.save = function() {
        var dataToSave = $.map(self.lines(), function(line) {
            return line.state() ? {
                state: line.state().state,
                country: line.country().country
            } : undefined
        });
        alert("Could now send this to server: " + JSON.stringify(dataToSave));
    };
};
 
ko.applyBindings(new map());

});

我想把它连接起来。我试过这个,但我得到了一个错误

$.ajax({
        url: '/users/<%=@user.id%>',
        dataType: 'json',
        //async: false,
        //contentType: 'application/json',
        type: 'PUT',
        data: {total_changes: JSON.stringify(dataToSave) + JSON.stringify($("#edit_user_1").serializeObject())},
        //data:JSON.stringify(dataToSave),
        //data:dataToSave,
        success: function(data) {
            alert("Successful");
          },
          failure: function() {
            alert("Unsuccessful");
          }
        });

当我运行它时,它在终端中显示这样的错误。

我该如何解决这个问题?

4

2 回答 2

1

如果你有 json1 和 json2 对象,你可以这样做:

$.extend(json1, json2); 

因此,在 json1 中,您将合并两个对象。

于 2013-02-08T13:02:42.977 回答
0

问题是JSON.stringify(…) + JSON.stringify(…)。这将创建一个"{…}{…}"显然是无效JSON的字符串(这就是您从中获取的JSON::ParserError地方)。

我不确定您要完成什么以及您的服务器期望哪种 JSON 结构,但您可以执行类似的操作

    …
    contentType: 'application/json',
    data: JSON.stringify( {
        total_changes: dataToSave,
        edits: $("#edit_user_1").serializeObject()
    }),
    …
于 2013-02-08T14:53:45.207 回答