我正在尝试为没有/没有上传图像的用户设置默认DP。
尝试使用帮助程序显示内容但收到错误“未捕获错误:{{#each}}目前只接受数组,游标或falsey值。” 下面的代码(客户端JS) JS:
Template.mcomments.helpers({
'mcommentsdata':function(){
return comdata.find({},{sort:{"at":-1}}).fetch();
},
images2: function () {
var fetchimg=Meteor.users.findOne({
"_id":this.__id
});
if((fetchimg.profileimage==undefined)||(fetchimg.profileimage=="")){
var hello="/images/prof.jpg"
return hello;
}else{
return Images.find({"_id":fetchimg.profileimage})
}
}
});
HTML
<template name="mcomments">
<div id="mcomments" class="col-lg-3">
<div><h5 class="mcommentsheader">Followup Stream </h5>
</div>
<div class="col-lg-12 scrolling comscrolllist" id="mcomments1">
<div id="mcomments2">
{{#each mcommentsdata}}
<div class="col-lg-12 comcontainer">
<div class="row">
<div class="col-lg-3 indcomments" >
{{#each images2}}
<img src="{{this.url
}}" width="45px" height="50px" alt="">
{{/each}}
</div>
<div class="col-lg-9" style="">
<div class="row combody" >
<div class="pull-left mcommfont" >{{user}}</div>
<div class="pull-right mcommcust">{{product}} Case#{{productcaseno}}</div>
</div>
<div class="maincomment">{{comment}}</div>
<div class="comtemp"> <span data-livestamp="{{at}}"></span></div>
</div>
</div>
</div>
<div class="col-lg-12 comblankspace">
</div>
{{/each}}
</div>
</div>
</div>
</template>
现在我放弃了这种方法,并考虑上传图像并默认将网址附加到所有配置文件(onCreateuser),直到他们更改它。我相信这样做我可能必须在服务器启动时自动上传和映像。请引导我走向正确的方向,因为我在流星中仍然是noob。
存储适配器:GridFS。
此致 阿扎鲁丁
答案 0 :(得分:1)
将'hello'变量更改为以下代码:
var hello = [
{ url: "/images/prof.jpg" }
];
你遇到了问题因为hello当前是一个字符串 - #each需要一个数组/游标/等。正如你的错误所示。
或者,您可以在每个区块上使用{{#else}}并完全不用回复您的'hello'案例:
{{#each images}}
...
{{else}}
<!-- Default profile image code -->
{{/each}}