1

简单的问题,很确定这是一个复杂的答案:)

是否可以在 Durandal 中为视图模型实现某种形式的继承?

因此,如果您有这样的视图模型:

define(['durandal/app', 'services/datacontext', 'durandal/plugins/router', 'services/logger'],
    function (app, datacontext, router, logger) {
        var someVariable = ko.observable();
        var isSaving = ko.observable(false);

        var vm = {
            activate: activate,
            someVariable : someVariable,
            refresh: refresh,
            cancel: function () { router.navigateBack(); },
            hasChanges: ko.computed(function () { return datacontext.hasChanges(); }),
            canSave: ko.computed(function () { return datacontext.hasChanges() && !isSaving(); }),
            goBack: function () { router.navigateBack(); },
            save: function() {
                isSaving(true);
                return datacontext.saveChanges().fin(function () { isSaving(false); })
            },
            canDeactivate: function() {
                if (datacontext.hasChanges()) {
                    var msg = 'Do you want to leave and cancel?';
                    return app.showMessage(msg, 'Navigate Away', ['Yes', 'No'])
                        .then(function(selectedOption) {
                            if (selectedOption === 'Yes') {
                                datacontext.cancelChanges();
                            }
                            return selectedOption;
                        });
                }
                return true;
            }
        };

        return vm;

        //#region Internal Methods
        function activate(routeData) {
            logger.log('View Activated for id {' + routeData.id + '}, null, 'View', true);
            });
        }
        //#endregion

        function refresh(id) {
            return datacontext.getById(client, id);
        }
    });

是否有可能将其变成某种基本类型并从中继承更多的视图模型,能够扩展需求列表等等?

还有另一个问题,但视图模型似乎与我为 durandal/HotTowel 构建的视图模型不太一样。

谢谢。

4

3 回答 3

2

我很确定这可以通过 jQuery 的扩展方法来完成。这只是发生在我身上,所以我可能缺少一些东西,但一个基本的例子是这样的:

basevm.js

... your mentioned viewmodel

继承vm.js

define(['basevm'], function (basevm) {
   var someNewObservable = ko.observable();

   var vm = $.extend({
        someNewObservable : someNewObservable
   }, basevm);

   return vm;
});

请让我知道这是否有效。我只是从头顶编码,尚未经过测试。

于 2013-07-19T05:19:07.243 回答
2

只是根据你的说法,我想出了这个。让我知道这是否对您有用,如果没有,请告诉我我做错了什么。

谢谢。

视图模型库

define(['durandal/app', 'services/datacontext', 'durandal/plugins/router', 'services/logger'],
    function (app, datacontext, router, logger) {
        var vm = function () {
            var self = this;
            this.someVariable = ko.observable();
            this.isSaving = ko.observable(false);
            this.hasChanges = ko.computed(function () { return datacontext.hasChanges(); });
            this.canSave = ko.computed(function () { return datacontext.hasChanges() && !self.isSaving(); });
        };

        vm.prototype = {
            activate: function (routeData) {
                logger.log('View Activated for id {' + this.routeData.id + '}', null, 'View', true);
            },
            refresh: function (id) {
                return datacontext.getById(client, id);
            },
            cancel: function () {
                router.navigateBack();
            },
            goBack: function () { router.navigateBack(); },
            save: function() {
                var self = this;
                this.isSaving(true);
                return datacontext.saveChanges().fin(function () { self.isSaving(false); })
            },
            canDeactivate: function() {
                if (datacontext.hasChanges()) {
                    var msg = 'Do you want to leave and cancel?';
                    return app.showMessage(msg, 'Navigate Away', ['Yes', 'No'])
                        .then(function(selectedOption) {
                            if (selectedOption === 'Yes') {
                                datacontext.cancelChanges();
                            }
                            return selectedOption;
                        });
                }
                return true;
            }
        };

        return vm;
    });

父视图模型

define([viewmodelBase], function (vmbase) {
    var vm1 = new vmbase();
    vm1.newProperty = "blah";
    var vm2 = new vmbase();
});
于 2013-07-18T00:48:19.990 回答
1

我在我的博客上写了一篇文章来解决这个问题。简而言之,我在我的一个项目中为我的所有模式对话框视图使用原型继承。这是我写的帖子的链接(请随意跳到代码部分)和一个演示它的 jsFiddle示例

可以在 Durandal 中工作的简化示例(注意:每个视图模型都返回其构造函数,而不是对象):

viewmodels/modal.js

define(['durandal/system'], 
function(system) { 
  var modal = function () {
    this.name = 'Modal';
  }

  modal.prototype = {
    activate: function() {
        system.log(this.name + ' activating');
    },
    attached: function(view) {
        system.log(this.name + ' attached');
    },
    deactivate: function() {
        system.log(this.name + ' deactivating');
    },
    detached: function(view, parent) {
        system.log(this.name + ' detached');
    }
  };

  return modal;
});

viewmodels/child.js

define(['durandal/system', 'viewmodels/modal'],
function(system, Modal) {
  var child = function() {
    this.name = 'Child Modal';
  }

  // inherits from Modal
  child.prototype = new Modal();
  child.prototype.constructor = child;
  child.prototype._super = Modal.prototype;

  // overrides Modal's activate() method
  child.prototype.activate = function() {
    this._super.activate.call(this);  // we can still call it from the _super property
    system.log(this.name + ' activating [overridden version]');
  };

  return child;
});

我更喜欢这种实现,因为它支持代码重用,在 javascript 允许的范围内尽可能地符合 OOP 原则,并且它使我能够在需要时通过 _super 属性调用基类的方法。您可以根据需要轻松转换它。

于 2013-08-21T21:28:35.067 回答