HarmonyOS应用开发案例 搜索界面功能实现

描述

HarmonyOSHarmonyOS

一.创建项目

HarmonyOS

二.代码示例

Index.hml


{{title}}

Index.css

.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.txt {
    font-size: 24px;
}

Index.js

import router from '@system.router';
import file from '@system.file';
import window from '@ohos.window';
export default {
    data: {
        title: "点击去下一页"
    },
    goSearched(){
        router.push({
            uri:"pages/searched/searched"
        })
    }
}


Searched.hml


Searched.js

import router from '@system.router';
import prompt from '@system.prompt';
export default {
    data: {
        content: ''
    },
    change(e){
        this.content  = e.text
        console.log("搜索值:" + this.content)
    },
    submit(){
        if (this.content == "") {
            prompt.showToast({
                message:"您搜索的内容为空"
            })
        }else{
            router.push({
                uri:'pages/index/index',
                params:{
                    title:"这里是您搜索的内容页"
                }
            })
        }
    }
}
打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分