Для полноценной обработки HTML мы все равно обращаемся к DOM
пока нет того, что нельзя сделать jquery и HIstory HTML5
Какой тогда смысл в ангуларе если он все эти функции делает и даже быстрее
No more $scope
.factory("RSSFeedFactory", ["$http", function($http) {
var service = {
parseRSSFeed: parseRSSFeed
};
function parseRSSFeed(RSSFeedURL) {
return $http.jsonp(
"ajax.googleapis.com/ajax/services/feed/load?v=1.0" +
encodeURIComponent(RSSFeedURL) + '&c=bba0999232b1e6ebb88e30631a90da46'
)
.then(function(response) {
return response.data.responseData
.feed.entries.map(function(entry) {
// делайте тут что хотите
return entry;
});
}
};
}
return RSSFeedFactory;
}]);