伦理片hd-伦理片 在线播放-伦理片 在线-伦理免费在线观看-综合图片区-综合婷婷

訂閱本欄目 RSS您所在的位置: 深山工作室 > uni-app > 正文

uni-app 搜索、歷史記錄功能簡單實(shí)現(xiàn)

2020/12/11 23:19:01 字體: 瀏覽 4525
實(shí)現(xiàn)功能
1.點(diǎn)擊搜索,把搜索的值存入本地記錄,并展示
2.搜索相同的值,要?jiǎng)h除舊數(shù)據(jù),把新數(shù)據(jù)放進(jìn)數(shù)組首位
3.清空歷史記錄


<template>
<view>
<!-- 搜索框 -->
<view class="search">
<view style="display: flex;align-items: center;">
<text class="iconfont icon-sousuo position-absolute text-muted"></text>
<input class="searchInput" v-model="inputValue" @confirm="search" placeholder="搜索" type="text" />
</view>
<view>取消</view>
</view>
<!-- 搜索框 -->

<!-- 搜索歷史 -->
<view class="searchHistory">
<view style="display: flex;align-items: center;justify-content: space-between;box-sizing: border-box;padding: 0px 5px;">
<view>搜索歷史:</view>

<view style="color: red;font-size: 28px;" @click="empty">×</view>
</view>
<view class="searchHistoryItem">
<view v-for="(item, index) in searchHistoryList" :key="index">
<text>{{ item }}</text>
</view>
</view>
</view>
<!-- 搜索歷史 -->
</view>
</template>

<script>
export default {
data() {
return {
inputValue: '',
searchHistoryList: [] //搜索出來的內(nèi)容
};
},
methods: {
search() {
if (this.inputValue == '') {
uni.showModal({
title: '搜索內(nèi)容不能為空'
});
} else {
if (!this.searchHistoryList.includes(this.inputValue)) {
this.searchHistoryList.unshift(this.inputValue);
uni.setStorage({
key: 'searchList',
data: JSON.stringify(this.searchHistoryList)
});
} else {
//有搜索記錄,刪除之前的舊記錄,將新搜索值重新push到數(shù)組首位
let i = this.searchHistoryList.indexOf(this.inputValue);
this.searchHistoryList.splice(i, 1);
this.searchHistoryList.unshift(this.inputValue);
uni.showToast({
title: '不能重復(fù)添加'
});
uni.setStorage({
key: 'searchList',
data: JSON.stringify(this.searchHistoryList)
});
}
}
},
//清空歷史記錄
empty() {
uni.showToast({
title: '已清空'
});
uni.removeStorage({
key: 'searchList'
});

this.searchHistoryList = [];
}
},
async onLoad() {
let list = await uni.getStorage({
key: 'searchList'
});

console.log(list[1].data);

if (list[1].data) {
this.searchHistoryList = JSON.parse(list[1].data);
}
}
};
</script>

<style>
.search {
width: 100%;
height: 30px;
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
padding: 0px 15px;
}
.searchInput {
background-color: #f8f9fa;
width: 220px;
margin-left: 5px;
}
.searchHistory {
width: 100%;
margin-top: 5px;
}
.searchHistoryItem {
width: 100%;
display: flex;
flex-wrap: wrap;
}
.searchHistoryItem view {
/* width: 50px; */
height: 20px;
border: 1px solid #eee;
margin: 0px 5px;
}
</style>


相關(guān)閱讀
深山留言板 v7.0.1 bulid2014.11.15錯(cuò)誤更新版
比較實(shí)用的利用javascript按比例相應(yīng)縮放圖片大小
網(wǎng)站管理后臺
Asp加密解密函數(shù)
Dreamweaver在onLoad運(yùn)行_onOpen.htm時(shí),發(fā)生了以下javascript錯(cuò)誤
XHTML+CSS兼容性解決方案小集
一張背景實(shí)現(xiàn)自適應(yīng)九宮格
襄陽康輝國際旅行社
共有0條關(guān)于《uni-app 搜索、歷史記錄功能簡單實(shí)現(xiàn)》的評論
發(fā)表評論
正在加載評論......
返回頂部發(fā)表評論
呢 稱:
表 情:
內(nèi) 容:
評論內(nèi)容:不能超過 1000 字,需審核,請自覺遵守互聯(lián)網(wǎng)相關(guān)政策法規(guī)。
驗(yàn)證碼: 驗(yàn)證碼 
網(wǎng)友評論聲明,請自覺遵守互聯(lián)網(wǎng)相關(guān)政策法規(guī)。

您發(fā)布的評論即表示同意遵守以下條款:
一、不得利用本站危害國家安全、泄露國家秘密,不得侵犯國家、社會、集體和公民的合法權(quán)益;
二、不得發(fā)布國家法律、法規(guī)明令禁止的內(nèi)容;互相尊重,對自己在本站的言論和行為負(fù)責(zé);
三、本站對您所發(fā)布內(nèi)容擁有處置權(quán)。

更多信息>>欄目類別選擇
百度小程序開發(fā)
微信小程序開發(fā)
微信公眾號開發(fā)
uni-app
asp函數(shù)庫
ASP
DIV+CSS
HTML
python
更多>>同類信息
uni-app開發(fā)表單input組件的一些規(guī)則說明自己預(yù)留使用
uni-app:使用uni.downloadFile下載word或pdf文件并保存到手機(jī)
小程序中利用addPhoneContact將聯(lián)系人的信息添加到手機(jī)通訊錄支持保存聯(lián)系人頭像
微信小程序打開客服提示:該小程序提供的服務(wù)出現(xiàn)故障,請稍后重試
微信小程序客服會話只能過button讓用戶主動(dòng)觸發(fā)
uni-app開發(fā)微信小程序使用button的open-type為contact調(diào)用微信客服不能用view或者js調(diào)用
更多>>最新添加文章
dw里面查找替換使用正則刪除sqlserver里面的CONSTRAINT
Android移動(dòng)端自動(dòng)化測試:使用UIAutomatorViewer與Selenium定位元素
抖音直播音掛載小雪花 懂車帝小程序
javascript獲取瀏覽器指紋可以用來做投票
火狐Mozilla Firefox出現(xiàn):無法載入您的Firefox配置文件 它可能已經(jīng)丟失 或是無法訪問 問題解決集合處理辦法
在Android、iOS、Windows、MacOS中微信小程序的文件存放路徑
python通過代碼修改pip下載源讓下載庫飛起
python里面requests.post返回的res.text還有其它的嗎
更多>>隨機(jī)抽取信息
微軟公司的三道面試題目看了會有意想不到的收獲
從空格談起--關(guān)于CSS模塊化設(shè)計(jì)
UL與LI 標(biāo)簽詳解
延邊金橋國際旅行社有限公司
雙擊文字后實(shí)現(xiàn)編輯文本功能
麗江云杉旅行網(wǎng)
主站蜘蛛池模板: 午夜影视在线视频观看免费 | 思思久久99热这里只有精品66 | 欧美精品免费专区在线观看 | 久久精品一区二区三区中文字幕 | 日本大片在线免费观看 | 男人天堂2020手机在线 | 欧美黄色免费在线观看 | 一级片免费在线播放 | h小视频在线观看 | 亚洲人成在线观看一区二区 | 国产欧美一区二区三区在线看 | 成人免费一级在线播放 | 天天操天天干天天拍 | 一区卡二区卡三区卡视频 | 国产欧美国产精品第二区 | 国产深夜福利在线观看网站 | 国产区精品一区二区不卡中文 | 韩国伦理妈妈的朋友在线观看 | 九月激情 | sprd在线| 亚洲国产高清视频在线观看 | 五月婷婷爱 | 9久热精品免费观看视频 | 国产色在线 | 国产在线观看人成激情视频 | 在线播放色| 日韩中文字幕高清在线专区 | 在线a久青草视频在线观看g | 美国天堂| 国产精品一区二区综合 | 婷婷亚洲五月 | 欧美福利专区 | 精品卡通动漫在线观看视频一区 | 青青草华人在线视频 | 诱咪视频免费 | 亚洲精品高清在线 | h成人3d动漫在线观看网站 | 亚洲视频欧洲视频 | 男人天堂网址 | 日韩系列在线 | 老子影院午夜理伦手机不卡 |