for example:
js:
var str = "this my mark {{a}} {{e}} {{i} {{o}} {{u}}, select one!";
$scope.tip = str;
html:
<p>{{tip}}</p>
how to make the output is this my mark {{a}} {{e}} {{i} {{o}} {{u}}, select one!
?
for example:
js:
var str = "this my mark {{a}} {{e}} {{i} {{o}} {{u}}, select one!";
$scope.tip = str;
html:
<p>{{tip}}</p>
how to make the output is this my mark {{a}} {{e}} {{i} {{o}} {{u}}, select one!
?
Add ngNonBindable
attribute to the element who's content you don't want to be compiled or bind.