作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将数据从 js.function 发送到 Firebase 数据库。数据由两个字符串和1个数据/时间变量组成,js函数的源代码如下:
$('#send_button').click(function(){
rootRef.push({
title:$('#title').val(),
description:$('#description').val(),
time: `${new Date().getTime()}.txt`;
});
})
该功能运行完美,我的 firebase 数据库收到了内容,但它看起来像这样?
时间变量仅存储随机数而不是当前日期,有什么方法可以解决这个问题吗?
谢谢问候
最佳答案
new Date().getTime()
method returns how many milliseconds have passed sinceJanuary 1, 1970, 00:00:00 GMT
.
您可以使用toDateString()
将日期对象转换为字符串
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript ISO Dates</h2>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = new Date().toDateString();
</script>
</body>
</html>
您可以使用toUTCString()
将字符串中的日期对象与时间一起转换
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript ISO Dates</h2>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = new Date().toUTCString();
</script>
</body>
</html>
关于javascript - 将当前日期和时间保存在 firebaseDatabase 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48763359/
我是一名优秀的程序员,十分优秀!