我使用骨干来制作一个相当复杂的形式。我有许多嵌套模型,并且一直在计算父模型中的其他变量,如下所示:
// INSIDE PARENT MODEL
computedValue: function () {
var value = this.get('childModel').get('childModelProperty');
return value;
}
这似乎可以很好地保持我的用户界面同步,但只要我打电话
.save()
在父模型上,我得到:
Uncaught TypeError: Object #<Object> has no method 'get'
似乎儿童模特暂时停止响应。
我做错了什么?
编辑:堆栈跟踪是:
Uncaught TypeError: Object #<Object> has no method 'get' publish.js:90
Backbone.Model.extend.neutralDivisionComputer publish.js:90
Backbone.Model.extend.setNeutralComputed publish.js:39
Backbone.Events.trigger backbone.js:163
_.extend.change backbone.js:473
_.extend.set backbone.js:314
_.extend.save.options.success backbone.js:385
f.Callbacks.o jquery.min.js:2
f.Callbacks.p.fireWith jquery.min.js:2
w jquery.min.js:4
f.support.ajax.f.ajaxTransport.send.d
编辑#2回应以下评论:
我还有一些基本的东西。我替换了一些对this.get('childModel')['childModelProperty']的引用,现在我得到了类似的东西 '无法读取未定义的属性childModelProperty。
我还没有从服务器中提取任何内容,父模型就像
一样define(['jquery', 'underscore', 'backbone', 'models/childmodel'], function($, _, Backbone, ChildModel) {
var ParentModel = Backbone.Model.extend({
defaults: {
childModel : new ChildModel()
}
答案 0 :(得分:1)
defaults
仅在您创建模型时使用。调用save后,它将调用set
,它将用一个简单的javascript对象覆盖childModel。在我看来,你有几个选择:
2)在每个父模型中覆盖set
以更新现有的子模型(或创建它),如下所示:
children:{
childModel: ChildModel
}
set: function (key, value, options) {
var attrs;
if (_.isObject(key) || key == null) {
attrs = key;
options = value;
} else {
attrs = {};
attrs[key] = value;
}
_.each(this.children, function (childType, name) {
if (!attrs.hasOwnProperty(name))
return;
//assume the child is just a model--not a collection
var newValue = attrs[name];
delete attrs[name];
var isModel = this[name] && this[name].set;
if (isModel && newValue) {
this[name].set(newValue, options);
}
else if (newValue) {
this[name] = new childType(newValue);
}
else {
delete this[name];
}
this.trigger('change:' + name);
}, this);
return Backbone.Model.prototype.set.call(this, attrs, options);
}
答案 1 :(得分:0)
有时你的childModel不包含Backbone.Model,就像你被分配了其他类型的对象一样。
为避免错误,请执行此操作(并且在您的控制台中,您将获得有关该错误的childModel值的有用信息):
computedValue: function () {
var value;
if( this.get('childModel') instanceof Backbone.Model ){
value = this.get('childModel').get('childModelProperty');
}else{
console.log('This is weird, childModel is not a Backbone.Model', this.get('childModel') );
}
return value;
}