Using Ember.js and Handlebars, what is the difference between binding a template to a class view vs instance of view?
问题 Case I.Binding template to instance of view. For example, let's say I have a template: <script type="text/x-handlebars" data-template-name="instance-template"> <b> Name: </b> {{ name }} </script> I can then bind an instance of view to it and append to the document ( for simplicity sake the param name is declared in view, as opposed to binding to some control layer) : App.instanceView = Ember.View.create({ templateName: 'instance-template', name: 'hello world' }).append(); What exactly is