当前位置:网站首页>微信小程序获取年月日周及早上、中午、晚上
微信小程序获取年月日周及早上、中午、晚上
2022-08-04 15:41:00 【coldriversnow】
首先我们在utils文件 中新建一个js文件,然后把当前时间和时间段的代码写在这个文件中。代码就如下:
function formatTime(date) {
var year = date.getFullYear()
var month = date.getMonth() + 1
var day = date.getDate()
return year + "年" + month + "月" + day + "日";
}
const formatDay = dates => {
let _day = new Array('星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
let date = new Date(dates);
date.setDate(date.getDate());
let day = date.getDay();
return _day[day];
}
const formatSole = () => {
let timeNow = new Date();
let hours = timeNow.getHours();
let text = ``;
if (hours >= 0 && hours <= 6) {
text = `深夜了,不要熬夜太久哟`;
} else if (hours > 6 && hours <= 8) {
text = `早上好`;
} else if (hours > 8 && hours <= 10) {
text = `上午好`;
} else if (hours > 10 && hours <= 13) {
text = `中午好`;
} else if (hours > 13 && hours <= 17) {
text = `下午好`;
} else if (hours > 17 && hours <= 23) {
text = `晚上好`;
}
return text;
}
module.exports = {
formatTime: formatTime,
formatDay: formatDay,
formatSole: formatSole
}
然后再项目页面中的js文件引入该js文件,我的需求是页面加载后显示,代码如下:
var util = require('../../utils/time.js')
Page({
data: {
promptTime:'',
promptDay:'',
promptTimeSole:'',
},
onLoad: function(options) {
this.setData({
promptTime: util.formatTime(new Date()),
promptDay: util.formatDay(new Date()),
promptTimeSole: util.formatSole(),
});
},
})
这样就能实现在页面中显示当前年-月-日-周 时间段了。效果图如下:
{
{promptTime}}{
{promptDay}}{
{promptTimeSole}}
微信小程序获取当前时间/年月日
var myDate = new Date();
myDate.getYear(); //获取当前年份(2位)
myDate.getFullYear(); //获取完整的年份(4位,1970-????)
myDate.getMonth(); //获取当前月份(0-11,0代表1月)
myDate.getDate(); //获取当前日(1-31)
myDate.getDay(); //获取当前星期X(0-6,0代表星期天)
myDate.getTime(); //获取当前时间(从1970.1.1开始的毫秒数)
myDate.getHours(); //获取当前小时数(0-23)
myDate.getMinutes(); //获取当前分钟数(0-59)
myDate.getSeconds(); //获取当前秒数(0-59)
myDate.getMilliseconds(); //获取当前毫秒数(0-999)
myDate.toLocaleDateString(); //获取当前日期
var mytime=myDate.toLocaleTimeString(); //获取当前时间
myDate.toLocaleString( ); //获取日期与时间
边栏推荐
- 基于 Next.js实现在线Excel
- DocuWare平台——用于文档管理的内容服务和工作流自动化的平台(上)
- A detailed explanation of what is software deployment
- In action: 10 ways to implement delayed tasks, with code!
- uni-app之renderjs
- 功率放大器的设计要点
- C端折戟,转战B端,联想的元宇宙梦能成吗?
- 现代 ABAP 编程语言中的正则表达式
- 从-99打造Sentinel高可用集群限流中间件
- 【已解决】allure无法生成json文件和AttributeError: module ‘allure‘ has no attribute ‘severity_level‘
猜你喜欢
GPS卫星同步时钟,NTP网络同步时钟,北斗时钟服务器(京准)
24、shell编程-流程控制
Taurus.MVC WebAPI 入门开发教程2:添加控制器输出Hello World。
一文详解什么是软件部署
普法教育结合VR全景,直观感受和学习法治精神
Byte、Short、Integer、Long内部缓存类的对比与源码分析
Legal education combined with VR panorama, intuitively feel and learn the spirit of the rule of law
视频字幕API接口文档
【已解决】allure无法生成json文件和AttributeError: module ‘allure‘ has no attribute ‘severity_level‘
C端折戟,转战B端,联想的元宇宙梦能成吗?
随机推荐
直播回放含 PPT 下载|基于 Flink & DeepRec 构建 Online Deep Learning
在Markdown文件中快速插入本地图片
附加:自定义注解(参数校验注解);(写的不好,别看…)
07-输入输出系统
字节API鉴权方法
李沐的深度学习笔记来了!
ICDE‘22推荐系统论文之Research篇
多商户商城系统功能拆解24讲-平台端分销会员
吴恩达机器学习[12]-机器学习系统设计
Byte、Short、Integer、Long内部缓存类的对比与源码分析
成功 解决 @keyup.enter=“search()“ 在el-input 组件中不生效的问题
C端折戟,转战B端,联想的元宇宙梦能成吗?
In action: 10 ways to implement delayed tasks, with code!
7 天学个Go,Go 结构体 + Go range 来学学
GPS卫星同步时钟,NTP网络同步时钟,北斗时钟服务器(京准)
招募 | 香港理工大学Georg Kranz 博士诚招博士
Li Mu's deep learning notes are here!
An article to answer what is the product library of the DevOps platform
DevOps平台中的制品库是什么?有什么用处?
JVM Tuning-GC Fundamentals and Tuning Key Analysis