Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テンプレートエンジンを使用せずに、既存のhtml要素をEmber.jsビューにアタッチする実装は何ですか。?たとえば、Backbone.jsでは、ビューにelプロパティを指定する必要があります
ビューでは、次のことができます。
didInsertElement: function () { var domNode = this.$().get(0); $(domNode).append('//your html element goes'); }