我尝试为 ember js 格式编码 html 代码,但我无法做到,我该如何解决?
<h5>Thursday. May. 05. 2017</h5>
<div class="progress-bar position" data-percent="48" data-duration="1000" data-color="#6a6f77,#5fb756"><script>$(".progress-bar").loading()</script></div>
答案 0 :(得分:1)
我猜你正在尝试添加数据标签
因为你必须添加
Ember.LinkComponent.reopen({
attributeBindings: ['data-dismiss']
});
在您的路线文件的上方。
如果您希望data-percent =“48”是动态的,只需将其更改为data-percent =“{{value-from-controller}}”。
我无法完全理解你的问题,如果有这个帮助或者你想要别的东西,请告诉我。