gpt4 book ai didi

javascript - 将以秒为单位的日期转换为 'day month year' 日期

转载 作者:行者123 更新时间:2023-12-03 03:47:43 24 4
gpt4 key购买 nike

我有一个代码,可以将任何以秒为单位的日期转换为日月年日期。这是:

    var database = firebase.database();
database.ref(`trips/${userid}/trips/${tripid}/begindate`).once('value').then(photosSnap => {
var tripbegindateseconds = photosSnap.val();
var tripbegindatefull = new Date(0); // The 0 there is the key, which sets the date to the epoch
tripbegindatefull.setUTCSeconds(tripbegindateseconds);
var tripbeginmonth = tripbegindatefull.getUTCMonth() + 1; //months from 1-12
var tripbeginday = tripbegindatefull.getUTCDate();
var tripbeginyear = tripbegindatefull.getUTCFullYear();
tripbegindate = tripbeginday + "/" + tripbeginmonth + "/" + tripbeginyear;
$('#tripbegindate').html(tripbegindate);
});

我现在正在尝试将其实现到 AngularJS 代码中。我正在从 Firebase 数据库检索数据,并使用 AngularJS 显示它们。这是我检索数据的 JS 代码:

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

app.controller('MainCtrl', function($scope) {
var database = firebase.database();
database.ref(`trips/${userid}/trips`).once('value')


.then(photosSnap => {


var trips = [];
photosSnap.forEach((trip) => {
trips.push({
tripKey: trip.key,
tripName: trip.val().name,
tripPhotoUrl: trip.val().photourl,
tripBeginDate: trip.val().begindate,
tripEndDate: trip.val().enddate
});
});
$scope.repeatData = trips;

// apply immediatly, otherwise doesn't see the changes

$scope.$apply();

// returns the array in the console to check values

console.log($scope);
}).catch(err => alert(err));

});

这里我的 tripBeginDate 和 tripEndDate 变量包含以秒为单位的日期。这些是我试图将其转换为包含日月年的日期的变量。我不知道如何将我的代码实现到这个 JS 脚本中以使其工作。

最佳答案

事实上,您可以使用 MomentJS 和一些 Angular 包装器(例如 GitHub 上的 Angular-moment)来对日期进行任何操作。至少你会“跳过”维护和调试你的代码(关键词:时区有时是有问题的)。

关于javascript - 将以秒为单位的日期转换为 'day month year' 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45303210/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com