0
私は動作するAngular-Moduleを持っています。 URLを変更すると(同じJSONファイル)、動作しません。何が間違っていますか?
ワーキングモジュール:
angular.module('destinationsApp', []).controller('destinationsCtrl', function($scope, $http){
$http
.get('https://raw.githubusercontent.com/MAHUKI-Webdesign/suntrips.github.io/master/main_sub_themes-light.json')
.then(function(itemsResponse) {
$scope.items = itemsResponse.data.main_themes;
が機能していない:
angular.module('destinationsApp', []).controller('destinationsCtrl', function($scope, $http){
$http
.get('https://www.suntrips.de/import/main_sub_themes-light.json')
.then(function(itemsResponse) {
$scope.items = itemsResponse.data.main_themes;
内部の応答は、itemsResponseですか? – Sletheren
コンソール/ネットワークタブに表示されるエラーはありますか? – EugenAz
Access Control-Allow-Originが見つからない –