我有一个带有模板的标准 Ember 视图。
模板:
<script type="text/html" data-template-name="template">
<div id="container">
<p>{{{view.description}}}</p>
</div>
</script>
看法:
Em.View.extend({
templateName: 'OutlookSnapshotInformationTemplate',
description : "Loooooong text...",
descriptionChanged : function(){
$('container').height()
[...]
}.observes('description')
}),
我想使用 JQuery 使用 descriptionChanged 观察者来获取容器div 的维度。
问题是描述值是异步的,并且在页面呈现之前更新。
模板中的特定属性引发的事件在 DOM 中重新呈现?