我從服務中獲取數據,其中對象的陣列來象下面這樣: -手柄欄中的訪問對象屬性包含'。'
[{
title : 'Tilte 1',
s.no : 1
},
{
title : 'Tilte 2',
s.no : 2
}
]
我已經使用車把模板解析像下面這樣的數據: -
{{#each this}}
<div>
<span>{{this.s.no}}</span>
<h2>{{this.title}}</h2>
</div>
{{/each}}
在上述我我無法訪問該屬性('s.no')。在香草JavaScript中,我們可以像這樣訪問['s.no'],但是在手柄中它不起作用。
{{this。[s.no]}}或{{this。[「s.no」]}}試試這兩個。 –