Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我被困在一个简单的问题上。在通过我的 Laravel 4 RESTful API 将表单数据放入我的 mysql 数据库之前,我已经对表单数据进行了清理。因此,净化后的单词“são”像“s & #227;o”一样存储。到目前为止,一切都很好。但是当我得到这些数据并将其放回 ng-model 的文本输入时,我得到的是“s & #227;o”,而不是“são”。
我错过了什么?
提前谢谢!!!
使用 ng-bind-html 代替 ng-model。它将清理您的数据并返回格式化的文本。