戻り値がコンソールに出力されています。しかし、それはテンプレートに表示されません
私のテンプレート
<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;
}
});
}
});
私はその見返りに正しいですか?またはそれを行う方法は?