Ошибка в выводе открытого погодного приложения в AngularJS - PullRequest
0 голосов
/ 12 апреля 2020

Привет всем, у меня проблема с angular js, я разрабатываю небольшое приложение для погоды и использую открытую карту погоды, но у меня возникает ошибка при запуске моего приложения

вот результат приложения при запуске введите описание изображения здесь

вот мой код

// SERVIRES
weatherApp.service('cityService', function() {

    this.city = "New York, NY";

});

// CONTROLLERS

weatherApp.controller('forecastController', ['$scope', '$resource', 'cityService', function($scope, $resource, cityService) {

    $scope.city = cityService.city;

    $scope.weatherAPI = $resource("https://api.openweathermap.org/data/2.5/forecast?q=London,us&mode=xml&appid=c4b636e853d2b065e2da4c55eb26e662", { callback: "JSON_CALLBACK" }, { get: { method: "JSONP" }});

    $scope.weatherResult = $scope.weatherAPI.get({ q : $scope.city });

    $scope.convertToFahrenheit = function(degK) {

        return Math.round((1.8 * (degK - 273)) + 32);

    };

    $scope.convertToDate = function(dt) {

      return new Date(dt * 1000);  

    };

}]);
...