我正在使用正在使用组合的 durandal 主详细信息示例。我有一个视图模型,其中定义了一些事件,
var ctor = function(name, description) {
this.name = name;
this.description = description;
};
ctor.prototype.activate = function() {
system.log('Model Activating', this);
};
ctor.prototype.deactivate = function () {
system.log('Model Deactivating', this);
};
ctor.prototype.viewAttached = function (view) {
system.log('this is not called !', this);
};
除了 之外的所有事件都viewAttached
被触发。我在这里找不到原因..