如何使用angularjs正确显示我的fb feed的重音

时间:2014-08-12 00:45:20

标签: regex angularjs

我有这个Feed https://www.facebook.com/feeds/page.php?id=149375131740957&format=rss20,我想用angularjs显示它。

我知道有角度的过滤器,但我不知道我需要什么样的正则表达式

app.factory('FeedService', ['$http', function($http){
    return {
        parseFeed : function(url) {
            return $http.jsonp('https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=50&callback=JSON_CALLBACK&q=' + encodeURIComponent(url));
        }
    }
}]);
app.filter('cleanit', function () {
    return function (text) {

    text = text.replace(new RegExp(???here???),"à");

    return text;
    }
});

html:

            <ul>
                <li ng-repeat="feed in feeds2 | filter:cleanit | limitTo:quantity2">                    
                    <p>
                        <span class="small">{{feed.publishedDate}}</span> 
                        <a href="{{feed.link}}">{{feed.title}}</a>
                    </p>                 
                </li>
            </ul>

例如,对于"à",我显示了"&#xe0;"。正确显示它的正则表达式是什么?

0 个答案:

没有答案