gpt4 book ai didi

meteor - 在 Meteor 的空格键中使用逻辑运算符

转载 作者:行者123 更新时间:2023-12-01 10:37:16 25 4
gpt4 key购买 nike

是否可以在空格键中使用逻辑运算符(没有模板助手)?

例如:

{{#if status == '0'}}
Hello world.
{{/if}}

不幸的是,我收到以下错误:

   While processing files with templating (for target web.browser):
client/views/test.html:46: Expected identifier, number, string, boolean, null, or a sub expression enclosed in "(", ")"
... {{#if status == '0'}} ...
^

=> Your application has errors. Waiting for file change.

最佳答案

空格键不能比较,但是可以用native underscore为了它。在客户端注册:

Template.registerHelper('_', function(){
return _;
});

然后像这样使用它:

{{_.isEqual status 0}}

如果状态为 0 则返回 true,否则返回 false

关于meteor - 在 Meteor 的空格键中使用逻辑运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33011666/

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