我将在单击事件后更新 html 的一部分。但我不想重新渲染整个页面......我的代码看起来像这样;
<div>OTHER PAGE STUFF I DO NOT WANT TO RE-RENDER</div>
<div>
<span id="updateThisSection">{{data}}</span>
<div>
我想在单击事件后更新该范围内的数据
linkClicked : function(e) {
//update the data inside the span here
}