angular ng-bind-html 对src路径失效 解决方案

| 阅读数:--次| 作者:js,javascript
摘要:json内容;<img src="/newsfile/1506271512489.jpg" width="600" height="450" alt="" /></p><p style=&q...

json内容

;&lt;img src=&quot;/newsfile/1506271512489.jpg&quot; width=&quot;600&quot; height=&quot;450&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;

用ng-bind-html绑定json数据,浏览器将会输出
<img width="600" alt="">
ng自动过滤了src属性,再次琢磨发现src是全路径的时候,浏览器就能输出我想要的src了
猜测angularjs是处于安全考虑,那就手动加全路径吧
html=htmldecode(dt.cContent)//第一步还是反编译
sr='src="/';
sh="height"
$scope.list.cContent=htmldecode(dt.cContent).replace(new RegExp(sh,'g'),'k').replace(new RegExp(sr,'g'),'src="http://www.xjj.com/')//第二步

 

就酱紫,有空再排版


返回顶部
学到老代码浏览 关闭浏览