我正在使用主干创建验证视图,该主干将处理在给定输入上的样式化气球中显示验证消息。我创建了一个处理此功能的新视图。为了执行验证并渲染视图,我在模型中设置了以下函数。
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)并在模型中呈现它是否违反标准?
答案 0 :(得分:2)
恕我直言:是的!它看起来不太好。
您应该在View
之外实例化Model
。
你应该绑定模型中的事件 error
,从外部捕获它并在那里实例化ErrorView
。
检查the example in the Model.validate
documentation
快速,你可以像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 attribute来解决它。