分享
收藏
返回
李洋水蛟龙
关注
私信
[文章]
HarmonyOS应用开发-显示时间的实现
HarmonyOS
一.创建项目
二.示例代码
hml:
title">现在的时间是:
{{ year }}年{{ mouth }}月{{ day }}日
{{ hour }}:{{min}}
css
:
.container {
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.title {
font-size: 30px;
margin: 10px;
}
js
:
export default {
data: {
year:"",
mouth:"",
day:"",
hour:"",
min:"",
},
onShow(){
this.getDate();
},
getDate:function(){
let newDate = new Date();
this.year = newDate.getFullYear();
this.mouth = newDate.getMonth();
this.day = newDate.getDay();
this.hour = newDate.getHours();
this.min = newDate.getMinutes();
}
}
附件:
HarmonyOS应用开发-显示时间的实现.docx
(40.12 KB)
(下载次数: 0, 2022-4-23 10:58 上传)
更多回帖
rotate(-90deg);
回复
我也要说两句
回帖
回复评论
相关经验
HarmonyOS
应用
开发
教程
显示
时间
的
实现
HarmonyOS
应用
开发
-Search
实现
HarmonyOS
应用
开发
教程
显示
开关功能与界面的
实现
HarmonyOS
应用
开发
教程 圆角list
实现
HarmonyOS
开发
案例:【Web组件
实现
抽奖】
HarmonyOS
/OpenHarmony应用
开发
-
显示
动画
HarmonyOS
应用
开发
案例 搜索界面功能
实现
HarmonyOS
应用
开发
实例 下拉刷新
实现
HarmonyOS
应用
开发
-
显示
开关功能与界面的
实现
HarmonyOS
应用
开发
-Search
实现
×
长按上方图片保存到相册
复制链接
长按二维码打开
发帖