1

嗨,伙计们,我整个周末都在努力让这件事发挥作用,但我似乎无法理解它。我想要实现的是使用 openweathermap api 从数组中选择天气数据,然后将这些数据推送到新数组中。我的问题是我想让这项工作像 24 小时预测一样,总是从第二天早上 06:00 开始,因此我只想推送这 24 小时间隔内存在的数据。但正如我所说,我似乎无法让它发挥作用。

这是我的代码:

HTML

<div ng-app="weatherApp" ng-controller="weatherController">
    <ul>
        <li ng-repeat="x in forecastArray">
            {{x.dt_txt}}
        </li>
    </ul>
</div>

JavaScript

var app = angular.module('weatherApp', []);

app.controller('weatherController', function($scope, $http) {

    $scope.units = 'metric';
    $scope.apiId = '...'; //My api key  


    $http.jsonp('http://api.openweathermap.org/data/2.5/forecast?', { params : {
        q : "london",
        units : $scope.units,
        callback: 'JSON_CALLBACK',
        APPID: $scope.apiId
    }}).success(function(response){
        $scope.data = response.list;
    });

    $scope.forecastArray = []; //new array
    var dtStart = new Date(...); //Have no clue how to define this object...
    var dtEnd = new Date(+new Date(dtStart) + 86400000); //dtStart + 24 hours

    $scope.data.forEach(function(item){
        var date = new Date(item.dt); //defining the dt property in data as a new dateobj
        if(date > dtStart && date < dtEnd){
            $scope.foreCastArray.push(item);
        }
    });

});
4

1 回答 1

1

所以你基本上问如何Date为明天早上 6 点创建一个对象。

首先使用创建Date明天的对象

var today = Date();
var tommorow = Date();
tommorow.setDate(today.getDate() + 1);

然后正确设置小时和分钟。使用Date.setHours(hour,min,sec,millisec)

tommorow.setHours(6,0,0,0);

那应该行得通。

于 2015-11-10T16:53:44.233 回答