现在的时间是: {{ year }}年{{ mouth }}月{{ day }}日 {{ hour }}:{{min}}
当前位置:   article > 正文

HarmonyOS应用开发-显示时间的实现_harmony 当前时间

harmony 当前时间

  • 创建项目

 

 

  • 示例代码

hml:

  1. <div class="container">
  2. <text class="title">现在的时间是:</text>
  3. <text class="title">{{ year }}年{{ mouth }}月{{ day }}日</text>
  4. <text class="title">{{ hour }}:{{min}}</text>
  5. </div>

 css:

  1. .container {
  2. flex-direction: column;
  3. justify-content: center;
  4. align-items: center;
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .title {
  9. font-size: 30px;
  10. margin: 10px;
  11. }

 js:

  1. export default {
  2. data: {
  3. year:"",
  4. mouth:"",
  5. day:"",
  6. hour:"",
  7. min:"",
  8. },
  9. onShow(){
  10. this.getDate();
  11. },
  12. getDate:function(){
  13. let newDate = new Date();
  14. this.year = newDate.getFullYear();
  15. this.mouth = newDate.getMonth();
  16. this.day = newDate.getDay();
  17. this.hour = newDate.getHours();
  18. this.min = newDate.getMinutes();
  19. }
  20. }

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/261948?site
推荐阅读
相关标签
  

闽ICP备14008679号