我需要为 Ember.View 分配一个静态数据属性,如何在 View 对象而不是{{view }}
标签中设置它。
App.MessagesFormView = Ember.View.extend({
tagName: 'div',
classNames: ['modal', 'fade'],
didInsertElement: function() {
this.$().modal('show')
},
willDestroyElement: function() {
this.$().modal('hide')
},
})