我的数据库存储产品信息,其中很多都被组织成列表.我将数据加载到角度为$scope.post.
例如,
$scope.post.size_description = '<li> Fits true to size. Take your normal size\r</li> <li> Slim-cut,mid-rise style</li> <li> Long in length,alter to fit</li> <li> Model wears an IT 48\r</li> <li> Model measures: waist size 32,height 6\'1"/ 185cm\r</li>'.
当我尝试将这些数据加载到我的Angular应用程序中时,它将被渲染为文本(即< li>不被解析).我明白这可能是出于安全原因,但是有什么办法吗?
解决方法
达马克斯在这里说:
https://stackoverflow.com/a/11640420/769083
<div ng-bind-html-unsafe="post.size_description"></div>