2

我正在使用主干创建一个验证视图,该主干将处理在给定输入上的样式气球中验证消息的显示。我创建了一个处理此功能的新视图。为了执行验证和渲染视图,我在我的模型中设置了以下函数。

   Dashboard.Models.EventModel = Backbone.Model.extend({
    idAttribute: "Id",

    // Model Service Url
    url: function () {
        var base = 'apps/dashboard/EventsDetails';
        return (this.isNew()) ? base : base + "/" + this.id;
    },

    validate: function (attrs) {
        var validTime = (attrs.Time) ? attrs.Time.match(/^(0?[1-9]|1[012])(:[0-5]\d) [APap][mM]$/) : true;

        if (!validTime) {
            new Dashboard.Views.ValidationMessageView({
                $container: $('#txtNewEventTime'),
                message: 'Invalid Time'
            }).render();

                    return 'error';
        };

    }

});

我的问题:创建新视图(ValidationMessageView)并从模型中渲染它是否违反标准?

4

1 回答 1

2

恕我直言:是的!.. 它看起来不太好。

您应该实例化View外部的Model.

您应该在模型中绑定事件 error,从外部捕获它并在ErrorView那里实例化。

检查文档中的示例Model.validate

很快你就可以有AllErrorsView这样的:

// code simplfied and not tested
var AllErrorsView = Backbone.View.extend({
  initialize: function(){
    this.model.on( "error", this.showError, this );
  },

  showError: function( model, error ){
    if( error == "txt_new_event_time" ) {
      new Dashboard.Views.ValidationMessageView({
        el:         "#txtNewEventTime",
        message:    "Invalid Time"
      }).render();
    }

    // ... more errors
  }

});

var myAllErrorsView = new AllErrorsView({ model: myModel });

我不得不说这不是我在你的代码中看到的唯一奇怪的东西。例如我不明白你的Model.url实现的含义,我认为你可以用Model.urlRoot 属性解决它。

于 2012-04-26T18:04:49.703 回答