代码:
当我在浏览器中通过 url 时,我可以看到所有对象,例如: link
但我似乎没有让它在我的代码中工作我错过了什么吗?
angular.module('ionicApp', ['ionic'])
.controller('MyCtrl', function($scope, $http) {
$scope.items = [];
$http.jsonp('cmaden.pythonanywhere.com/api/v1/today/?format=jsonp').success(function (data) {
$scope.items = data;
});
});