ノード、エクスプレス、エクスプレスハンドルバーでアプリを実行しています。変数は、this oneres.locals
のような条件ヘルパー "ifCond"に割り当てられたクエリの結果です。レンダリングする必要があるコードは部分的です。問題は、変数を使用するとヘルパーが機能しないことです。
//getting the variable works
{{groups}} // Group2
//works with standart block helper
{{#if groups}}1{{else}}2{{/if}} // 1
//helper is working
{{#ifCond 5 "==" 5}}equal{{else}}not equal{{/ifCond}} //equal
//not working when using variable with helper
{{#ifCond groups "==" Group2}}equal{{else}}not equal{{/ifCond}} //not equal
ヘルパーで動作しない原因は何ですか? ありがとうございました。