作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在使用 Meteor 和一些 Jade (火焰)模板:
template(name="userFormsLayout")
section.auth-layout
section.auth-dialog
+samlLogin
//+Template.dynamic(template=content)
我想通过条件包含评论部分:
template(name="userFormsLayout")
section.auth-layout
section.auth-dialog
+samlLogin
var cond = true
if(cond)
+Template.dynamic(template=content)
我也有这个模板的 JavaScript
Template.userFormsLayout.helpers({
languages() {
return _.map(TAPi18n.getLanguages(), (lang, tag) => {
const name = lang.name;
return { tag, name };
});
},
isCurrentLanguage() {
const t9nTag = i18nTagToT9n(this.tag);
const curLang = T9n.getLanguage() || 'en';
return t9nTag === curLang;
},
});
有人可以帮忙吗?
最佳答案
Meteor 的方法是在助手中设置变量 cond
。示例:
助手:
Template.userFormsLayout.helpers({
cond() {
// a function that returns 'true' or 'false'
return true;
},
});
模板:
template(name="userFormsLayout")
section.auth-layout
section.auth-dialog
+samlLogin
if(cond)
+Template.dynamic(template=content)
关于javascript - 如何在jade中按条件包含模板代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42410944/
我是一名优秀的程序员,十分优秀!