返回值正在控制台中打印。但它不显示在模板中
我的模板
<template name="Mytemplate">
<ul>
{{#each Name}}
<li>{{this}}</li> //No display
{{/each}}
</ul>
</template>
js
Template.Mytemplate.helpers({
Name : function(){
Meteor.call("getnNames", function(error, result) {
if(error){
alert("Oops!!! Something went wrong!");
return;
}else{
console.log(result); // Got result in array ["john","smith"]
return result;
}
});
}
});
我的回报是对的吗?或怎么做?