0
我想隱藏hide_it變量的p基。所以在我的控制器hide_it設置爲true我的情況玉失敗
res.locals.hide_it = true;
console.log(res.locals.hide_it) // working, returned true
但是當我在玉做
-if(!hide_it)
p hello
我想隱藏hide_it變量的p基。所以在我的控制器hide_it設置爲true我的情況玉失敗
res.locals.hide_it = true;
console.log(res.locals.hide_it) // working, returned true
但是當我在玉做
-if(!hide_it)
p hello
玉縮進 「2位」
你應該使用
它不工作if !hide_it
p hello
它也可以使用「 - 」前綴(JavaScript模式),但不建議在這種情況下標準翡翠if
符號可以工作。
您可以在線演示測試您的模板 - http://jade-lang.com/demo/
感謝您的代碼工作! 'p(style ='display:(hide === true?「none」:「block」')'this is do able? –
p(style ='display:'+((hide === true)?' none':'block'));'style ='之後的表達應該是javascript –
很酷,不知道它是否正確!tq! –