codecamp

鸿蒙OS 添加留言区域

留言框的功能为:用户输入留言后点击完成,留言区域即显示留言内容;用户点击右侧的删除按钮可删除当前留言内容重新输入。

留言区域由 div、text、input 关联 click 事件实现。开发者可以使用 input 组件实现输入留言的部分,使用 text 组件实现留言完成部分,使用 commentText 的状态标记此时显示的组件(通过 if 属性控制)。在包含文本“完成”和“删除”的 text 组件中关联 click 事件,更新 commentText 状态和 inputValue 的内容。具体的实现示例如下:

<!-- xxx.hml -->
<div class="container">
  <div class="left-container">
    <text class="comment-title">Comment</text>
    <div if="{{!commentText}}">
      <input class="comment" value="{{inputValue}}" onchange="updateValue()"></input>
      <text class="comment-key" onclick="update" focusable="true">Done</text>
    </div>
    <div if="{{commentText}}">
      <text class="comment-text" focusable="true">{{inputValue}}</text>
      <text class="comment-key" onclick="update" focusable="true">Delete</text>
    </div>
  </div>
</div>

/* xxx.css */
.container {
  margin-top: 24px;
  background-color: #ffffff;
}
.left-container {
  flex-direction: column;
  margin-left: 48px;
  width: 460px;
}
.comment-title {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.comment-key {
  width: 74px;
  height: 50px;
  margin-left: 10px;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: bold;
}
.comment-key:focus {
  color: #007dff;
}
.comment-text {
  width: 386px;
  height: 50px;
  text-align: left;
  line-height: 35px;
  font-size: 20px;
  color: #000000;
  border-bottom-color: #bcbcbc;
  border-bottom-width: 0.5px;
}
.comment {
  width: 386px;
  height: 50px;
  background-color: lightgrey;
}

// xxx.js
export default {
  data: {
    inputValue: '',
    commentText: false,
  },
  update() {
    this.commentText = !this.commentText;
  },
  updateValue(e) {
    this.inputValue = e.text;
  },
}
鸿蒙OS 添加图片区域
鸿蒙OS 添加外部容器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }