我有时会写类似的东西
{{#if oneThing}}{{oneThing}}{{else}}{{anotherThing}}{{/if}}
是否有内置的工具可以用较短的方式编写代码?
我正在考虑使用一个简单的助手
Handlebars.registerHelper("showEither", function(mainValue, fallbackValue, options) {
return mainValue || fallbackValue;
});
喜欢
{{showEither oneThing anotherThing}}
但我不确定两者