AUR0168
Last updated
Was this helpful?
AUR0168: Expression error: unexpected character: "{{expression}}"
This error occurs when the parser encounters a character that is not valid (or not supported) in the current position in the expression.
<!-- ❌ '@' is not valid here -->
<div textcontent.bind="@user"></div>Remove/replace the unexpected character and use valid expression syntax.
<!-- ✅ -->
<div textcontent.bind="user"></div>Look for accidental characters introduced by copy/paste.
If the expression comes from a generated template, inspect the generated output.
Last updated
Was this helpful?
Was this helpful?