在我的流星应用程序中,我想有选择地访问页面中的值。
if (Meteor.isClient) {
var percentageData = [
{
percent_type : 'online',
percentage: '20'
},
{
percent_type : 'offline',
percentage: '55'
}
];
Template.authenticated_user.helpers({
percentInformation: percentageData
})
}
在这里,我将一个简单的JSON返回给我的模板。
<template name="authenticated_user">
</template>
我想要的是能够在不同的地方放置这个JSON的页面部分。
例如:
<div id = {{percentInformation[0].percent_type}}></div>
将ID分配给“在线”。
这可能吗?
答案 0 :(得分:0)
有可能,唯一需要注意的是你也为数组成员使用点表示法:
{{percentInformation.[0].percent_type}}