Je suis à l'aide angulaire de l' $http.jsonp()
demande qui est avec succès le retour json enveloppé dans une fonction:
var url = "http://public-api.wordpress.com/rest/v1/sites/wtmpeachtest.wordpress.com/posts?callback=jsonp_callback";
$http.jsonp(url).
success(function(data, status, headers, config) {
//what do I do here?
}).
error(function(data, status, headers, config) {
$scope.error = true;
});
Le problème est, je ne sais pas comment accéder à/analyser la fonction renvoyée plastique-JSON. De toute orientation est très apprécié. Merci!