解决:
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