2

Here a sample of my code:

<ul> <li>{{model}} : Auris, Auris TS, Yaris</li> </ul>

Right now it displays nothing because there's no data for {{model}} and I would like to display the string "{{model}}" instead of the content.

Is it possible ?

Alex Tartan
  • 6,736
  • 10
  • 34
  • 45
Bryan
  • 23
  • 5

1 Answers1

4

Use this:

<code ng-non-bindable>{{model}}</code>
Alex Tartan
  • 6,736
  • 10
  • 34
  • 45