2015-12-03 83 views
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 

回答

0

玉縮進 「2位」

你應該使用

它不工作
if !hide_it 
    p hello 

它也可以使用「 - 」前綴(JavaScript模式),但不建議在這種情況下標準翡翠if符號可以工作。

您可以在線演示測試您的模板 - http://jade-lang.com/demo/

+0

感謝您的代碼工作! 'p(style ='display:(hide === true?「none」:「block」')'this is do able? –

+0

p(style ='display:'+((hide === true)?' none':'block'));'style ='之後的表達應該是javascript –

+0

很酷,不知道它是否正確!tq! –

相關問題