Frage

How does one add a conditional inside of a tag (link/anchor in my case) in jade?

Here's my pseudo code that of course won't work:

a(href="/foo", class="if (current_route[1] == 'foo'){active}") Go to Foo
War es hilfreich?

Lösung

How about

a(href="/foo", class=(current_route[1] === 'foo')? "active" : "") Go to Foo

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top