Is there a way to have AngularJS evaluate an expression within model data?
HTML:
<p>
{{Txt}}
</p>
Model:
{
Txt: "Can AngularJS process an expression in the model data? {{Rest}}"
}
{
Rest: "including this additional text."
}
The desired output should be:
Can AngularJS process an expression in the model data? including this additional text.
.