考虑我有以下 HTML 片段:
<div class="content" data-section-content></div>
我想用这样的 Ember 视图替换它:
App.ContentView = Ember.View.extend({
tagName :"div",
classNames : ["content"],
... ( how can i add the >> data-section-content << to the view )
});
将数据部分内容添加到视图的最佳方法是什么?