骨干标准化哈希
var Backbone = require ( 'backbone' ) ;
var normalizeHash = require ( 'backbone-normalize-hash' ) ;
Backbone . View . extend ( {
initialize ( ) {
this . listenTo ( this . model , normalizeHash ( this , 'modelEvents' ) )
} ,
modelEvents : {
change : 'render'
}
} ) ;
1