我正在尝试保存一个骨干集合,如下所示:
var backgridModel = Backbone.Model.extend({ });
var BackgridCollection = Backbone.Collection.extend({
model: backgridModel,
url : 'api/list'
});
var backgriCollections = new BackgridCollection();
backgriCollections.fetch();
var CreatePuppetRequest = Backbone.Model.extend({
url : 'api/createTable',
toJSON: function() {
console.log(backgriCollections.toJSON());
return backgriCollections.toJSON();
}
});
我使服务器调用如下:
var puppetTable = new CreatePuppetRequest();
puppetTable.save({}, {
success : function(model, response) {
alert("Successfully submitted " + num + " puppet(s)");
puppetFinalCollection.reset();
$('#create-puppet-table-button').removeAttr("disabled");
},
error : function(model, response) {
if (response.status == 400)
that.showErrors($.parseJSON(response["responseText"]));
else
console.log(response["responseText"]);
puppetFinalCollection.reset();
$('#create-puppet-table-button').removeAttr("disabled");
}
});
控制台输出
0: Object
designation: "m"
firstName: "sdfghj"
function (){ return parent.apply(this, arguments); }: Object
lastName: "sdfghj"
__proto__: Object
length: 1
__proto__: Array[0]
function (){ return parent.apply(this, arguments); }: Object
被额外添加到模型中,我不知道为什么要添加它?
除此之外,我得到这个Uncaught TypeError: Converting circular structure to JSON
也阻止了服务器调用。
编辑
从服务器获取()后,我的数据将类似于以下 JSON 字符串:
[
{
"userid": "",
"firstName": "Mayank",
"lastName": "Kumar",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Shylendra",
"lastName": "Bhat",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Akash",
"lastName": "Waran",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Shreyas",
"lastName": "Lokkur",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Anthony",
"lastName": "Raj",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Dheemanth",
"lastName": "Bharadwaj",
"designation": "Software Engineer"
},
{
"userid": "",
"firstName": "Prasanna",
"lastName": "Adiga",
"designation": "Software Engineer"
}
]
它也被填充到表格中。