I have the folowing attribute on a div: ng-show="state.name === 'index'". I’ve also tried ng-show='state.name === "index", but I keep getting the following error:
Syntax Error: Token ‘
"index"‘ is an unexpected token at column 16 of the expression[state.name === "index"]starting at["index"].
Why?
I found the problem. Instead of
"state.name==='index'", I should have written"state.name=='index'". pkoziowski.opensource was right, in that you can’t use conditional statements, but what they mean by that, is that you can’t use if statements, or any control flow statements for that matter, so you couldn’t do this: