【小程序项目开发-- 京东商城】uni-app之自定义搜索组件(下) -- 搜索历史

简介: 【小程序项目开发-- 京东商城】uni-app之自定义搜索组件(下) -- 搜索历史

文章目录

一、搜索历史的基本结构

  • data 定义数据 存贮搜索历史
  data() {
      return {
        // 输入数据
        inputString: '',
        // 延时器
        timer: null,
        // 搜索建议
        searchSuggest: '',
        // 搜索历史
        histortSearch: ['a','apple','money']
      };
    },
  • 渲染UI结构
 <!-- 搜索历史容器 -->
    <view class="history-list-container">
      <!-- 标题区域 -->
      <view class="history-head-box">
        <text>搜索历史</text>
        <uni-icons type="trash" size="17"></uni-icons>
      </view>
      <!-- 列表区域 -->
      <view class="history-item-container">
        <view class="history-item" v-for="(item,i) in histortSearch" :key="i">
          <uni-tag :text="item" custom-style="background-color:#f9f9f9; color: black;" inverted="true"></uni-tag>
        </view>
      </view>
    </view>
  • 美化样式
  .history-list-container {
    .history-head-box {
      display: flex;
      justify-content: space-between;
      padding: 18rpx;
      border-bottom: 3rpx solid #ebebeb;
      font-size: 28rpx;
      align-items: center;
    }
    .history-item-container {
      display: flex;
      .history-item {
        margin: 10rpx;
      }
    }
  }
  • 效果图片.png

1.1 按需显示

  • (搜索时只显示建议,不显示历史)

图片.png

  • 解决(添加block 判断条件
    <!-- 搜索建议列表容器 -->
    <block v-if="inputString.length != 0">
      <view class="sgg-list-container">
        <navigator class="sgg-item" v-for="(product,i) in searchSuggest" v-bind:key="i"
          :url="'/subpackages/goods_detail/goods_detail?cat_id=' + product.goods_id">
          <view class="sgg-name">{{product.goods_name}}</view>
          <uni-icons type="right"></uni-icons>
        </navigator>
      </view>
    </block>
    <!-- 搜索历史容器 -->
    <block v-if="inputString.length === 0">
      <view class="history-list-container">
        <!-- 标题区域 -->
        <view class="history-head-box">
          <text>搜索历史</text>
          <uni-icons type="trash" size="17"></uni-icons>
        </view>
        <!-- 列表区域 -->
        <view class="history-item-container">
          <view class="history-item" v-for="(item,i) in histortSearch" :key="i">
            <uni-tag :text="item" custom-style="background-color:#f9f9f9; color: black;" inverted="true"></uni-tag>
          </view>
        </view>
      </view>
    </block>

图片.png

二、处理历史搜索关键词

需要做到:

  1. 添加关键词 (push)
  2. 最近时间查询的放在数组第一位(reverse,unshfit)

注意:因为列表是可变的,如果直接对列表使用reverser(),第二两翻转时第二个就变成倒数第二个了,原因在于你翻转之后push元素,应该在列表不变情况push,解决办法有两种,

第一种:翻转显示后,在进行push之前按,再reverse翻转回去在push

第二种...展开列表reverse(此时不改变原列表),此时可以在computed(计算属性,类似数据监听器和过滤器,有缓存机制)中返回reverse的值

  • 建议 使用unshift直接添加第一项
  1. 去重(使用集合性质Set

代码实现(在调取数据成功时调用一下函数

// 添加到历史
      addhistory(){
        this.histortSearch.unshift(this.inputString)
        // this.histortSearch.reverse()
        const res = new Set(this.histortSearch) //创建set对象 需要用new
        this.histortSearch = Array.from(res)
      }
  • 效果:39.gif

三、保存历史记录到本地

由于每次编译都会被清空,所以我们需要保存记录到本地缓存

  1. 使用 uni.setStorageSync(键,值) 将数据存贮在本地
  // 添加到历史
      addhistory() {
        this.histortSearch.unshift(this.inputString)
        // this.histortSearch.reverse()
        const res = new Set(this.histortSearch) //创建set对象 需要用new
        this.histortSearch = Array.from(res)
        // 将存贮数据存贮在本地
        uni.setStorageSync('history', JSON.stringify(this.histortSearch))
      }
    },
  1. onLoad 初始化 导入本地数据
onLoad() {
   this.histortSearch = JSON.parse(uni.getStorageSync ('history') || '[]') // 通过键得到值,JSON解析字符串为数组对象 不存在对象则为空数组 
 },
  • 效果

四、按下trash键清空历史

  • 绑定事件处理函数clearhistory
<uni-icons type="trash" size="17" @click="clearHistory"></uni-icons>
  • clearhistory函数定义
// 清空历史
  clearHistory() {
    this.histortSearch = []
    uni.setStorageSync('history',['']) //必须重新赋值为空数组,只能为数组数据类型
  },
  • 效果
  • 40.gif

五、点击搜索历史跳转到商品详情页

  • 每个标签绑定click事件
<uni-tag :text="item" custom-style="background-color:#f9f9f9; color: black;" inverted="true" @click="gotogoodslist(item)"></uni-tag>
  • 定义事件函数
 // 点击tag事件
gotogoodslist(item){
    uni.navigateTo({
      url:'/subpackages/goods_list/goods_list?query=' + item
  • 效果

41.gif

六、search分支的提交

  • git branch 查看分支
  • git add . 提交到暂存区
  • git commit -m "完成了search的开发" 提交到本地仓库
  • git push origin -u search 提交到远程仓库的search分支
  • git checkout master 切换到主分支
  • git merge search 合并search分支
  • git push 提交到远程仓库主分支
  • git branch -d search 删除search分支

图片.png

✨谢谢你的阅读,您的点赞和收藏就是我创造的最大动力!✨



相关文章
|
2月前
|
JSON 小程序 JavaScript
uni-app开发微信小程序的报错[渲染层错误]排查及解决
uni-app开发微信小程序的报错[渲染层错误]排查及解决
660 7
|
2月前
|
小程序 JavaScript 前端开发
uni-app开发微信小程序:四大解决方案,轻松应对主包与vendor.js过大打包难题
uni-app开发微信小程序:四大解决方案,轻松应对主包与vendor.js过大打包难题
732 1
|
5天前
|
移动开发 小程序 PHP
校园圈子论坛系统采取的PHP语音和uni账号开发的小程序APP公众号H5是否只需要4800元?是的,就是只需要4800元
关于校园圈子论坛系统采用PHP语言和uni-app开发的小程序、APP、公众号和H5是否仅需4800元这个问题,实际上很难给出一个确定的答案。这个价格可能受到多种因素的影响
|
8天前
|
缓存 移动开发 小程序
uni-vue3-wetrip自创跨三端(H5+小程序+App)酒店预订app系统模板
vue3-uni-wetrip原创基于vite5+vue3+uniapp+pinia2+uni-ui等技术开发的仿去哪儿/携程预约酒店客房app系统。实现首页酒店展示、预订搜索、列表/详情、订单、聊天消息、我的等模块。支持编译H5+小程序+App端。
44 8
|
23天前
|
移动开发 小程序
仿青藤之恋社交交友软件系统源码 即时通讯 聊天 微信小程序 App H5三端通用
仿青藤之恋社交交友软件系统源码 即时通讯 聊天 微信小程序 App H5三端通用
49 3
|
1月前
|
小程序 机器人 开发者
QQ 小程序已发布,但无法被搜索的解决方案
我的 QQ 小程序在 2024 年 8 月就已经审核通过,上架后却一直无法被搜索到。打开后,再在 QQ 上下拉查看 “最近使用”,发现他出现一下又马上消失。
41 2
家政服务小程序APP开发,做好上门家政最快的方法是什么?
在家政服务领域,打造成功的平台并非易事。本文分享了三个关键步骤:避免初期盲目投入、采用低成本获客方式、建立有效的阿姨筛选机制。遵循这些方法,可助你避开常见陷阱,成为行业头部平台。
|
1月前
|
小程序 数据挖掘 UED
开发1个上门家政小程序APP系统,都有哪些功能?
在快节奏的现代生活中,家政服务已成为许多家庭的必需品。针对传统家政服务存在的问题,如服务质量不稳定、价格不透明等,我们历时两年开发了一套全新的上门家政系统。该系统通过完善信用体系、提供奖励机制、优化复购体验、多渠道推广和多样化盈利模式,解决了私单、复购、推广和盈利四大痛点,全面提升了服务质量和用户体验,旨在成为家政行业的领导者。
|
2月前
|
移动开发 小程序 数据可视化
基于npm CLI脚手架的uniapp项目创建、运行与打包全攻略(微信小程序、H5、APP全覆盖)
基于npm CLI脚手架的uniapp项目创建、运行与打包全攻略(微信小程序、H5、APP全覆盖)
320 3
|
2月前
|
缓存 小程序 索引
uni-app开发微信小程序时vant组件van-tabs的使用陷阱及解决方案
uni-app开发微信小程序时vant组件van-tabs的使用陷阱及解决方案
233 1