Сообщение от nerv_
|
ангуляр
|
Не MVVM
Вся логика в JS, никакой логики в HTML.
var Example = Class({
'extends': MK.DOMArray,
constructor: function() {
this
.initMK()
.bindElement( this, 'table tbody' )
;
},
renderer: function( object ) {
return '<tr><td class="a"></td><td class="b"></td><td class="c"></td></tr>';
}
});
var ExampleObject = Class({
'extends': MK.Object,
constructor: function( o ) {
this
.initMK()
.jset( o )
.on( 'render', function() {
this.bindElement({
a: this.$( '.a' ),
b: this.$( '.b' ),
c: this.$( '.c' )
}, MK.htmlp );
})
;
}
});