Использую Wp-rest-api v2 в своем Wordpress блоге и хочу вывести с помощью него в Angular приложении например контент!
https://webref.ru/dev/angular-cookbook/json - пытаюсь воспользоваться данным примером ничего не выходит. Ошибок никаких в консоле нет, но ничего не выводиться.
<!DOCTYPE html>
<html ng-app="countryApp">
<head>
<meta charset="utf-8">
<title>Пример извлечения данных JSON в Angular.js</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<script>
var countryApp = angular.module('countryApp', []);
countryApp.controller('CountryCtrl', function ($scope, $http){
$http.get('http://mywebsite.me/wp-json/wp/v2/posts').success(function(data) {
$scope.posts = data;
});
});
</script>
</head>
<body ng-controller="CountryCtrl">
<h2>Пример извлечения данных JSON в Angular.js</h2 >
<table class="table table-striped">
<tr>
<th>Код</th>
<th>Страна</th>
<th>Население</th>
</tr>
<tr ng-repeat="post in posts">
<td>{{posts.content}}</td>
</tr>
</table>
</body>
</html>
В чем проблема подскажите