标签: angularjs html-entities
我有这样的问题:在服务器上我读取数据并在其上使用htmlentities,所以像ä这样的字母被更改为ä,我想将其显示为输入标记的值,例如< / p>
ä
<input type="text" ng-model="data.name" />
但是在这里我没有ä字符,而是看到它的转义版本。如果我使用例如
<span ng-bind-html="data.name"></span>
我该怎么做才能让它正常运作?