AngularJS 自定义 filter

前端之家收集整理的这篇文章主要介绍了AngularJS 自定义 filter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


问题:后台返回新闻json格式数据,新闻标题被UrlEncode了。

解决

var app = angular.module('mainApp',[]);
app.controller('mainCtrl',function ($scope,$http) {

});


自定义filter

app.filter('decodeURI',function () { //可以注入依赖

return function (text) {
return decodeURI(text);
}

});


使用:

{{h.title | decodeURI }}

原文链接:https://www.f2er.com/angularjs/146313.html

猜你在找的Angularjs相关文章