gpt4 book ai didi

javascript - 使用 CollectionFS 从全局模板助手返回 url

转载 作者:行者123 更新时间:2023-11-28 06:52:16 24 4
gpt4 key购买 nike

我正在尝试使用全局模板助手获取上传图像的 URL。到目前为止,我尝试执行 isPrimary.url() 但我只得到 null,否则 isPrimary.url 返回一个函数。知道如何处理这个问题吗?

user_item.html

<template name="userItem">
<div class="col-md-3">
<div class="text-center">
<img width="80" class="img-rounded" src="{{primaryPicture store='thumb'}}">
</div>
</div>
</template>

global_templates.js

Template.registerHelper('primaryPicture', function () {
var isPrimary = Images.findOne({userId: this._id, primary: true});
if (isPrimary) {
return isPrimary.url();
} else {
return '/user.png';
}
});

最佳答案

我不知道为什么 isPrimary.url();当它应该返回原始 url 时返回 null,但通过 isPrimary.url({store:'thumb'}); 修复它

关于javascript - 使用 CollectionFS 从全局模板助手返回 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32856226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com