gpt4 book ai didi

javascript - 在 Meteor 中,如何编写一个助手在每个循环的 Handlebars 中使用?

转载 作者:行者123 更新时间:2023-12-02 18:52:22 25 4
gpt4 key购买 nike

我的帐户(一个集合)的每一行都是关于 {_id: xxx, last_name:'kuo', first_name'willy'}

我的 client.js 中有以下内容

Template.accountPage.accounts = function() {
return Accounts.find({});
}

我的问题在我的 client.html 中:

{{#each accounts}}

{{last_name}}
{{first_name}}
{{full_name}} # <----- how can I implement the full_name helper
# which should return account.first_name + account.last_name

{{/each}}

编辑

上面的例子应该很简单,下面是新的:

我的 client.js 中有以下内容

Template.accountPage.accounts = function() {
return Accounts.find({});
}

我的问题在我的 client.html 中:

{{#each accounts}}

{{last_name}}
{{first_name}}
{{created_at}} # <----- how can I implement the created_at
# which is computed by accounts._id.getTimestamp()

{{/each}}

最佳答案

定义以下helper可以实现目标:

Template.accountPage.helpers({
created_at: function() {
return this._id.getTimestamp();
}
})

关于javascript - 在 Meteor 中,如何编写一个助手在每个循环的 Handlebars 中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15697125/

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