微信小程序搜索框代码组件

search.wxml

<view class="header">
    <view class="search">
        <icon type="search" size="18" color="">

        </icon>
        <input type="text" confirm-type="search" bindconfirm="onConfirm" value="{{value}}" />
        <icon type="clear" size="18" bind:tap="onToggle" />
    </view>
    <button bind:tap="onCancel" plain="{{true}}" class="cancel">取消</button>
</view>
<view class="container" wx:if="{{!isSearch}}">
    <view class="title">
        <view class="line"></view>
        <text>历史搜索</text>
    </view>
    <view class="history-container">
        <block wx:for="{{words}}" wx:key="{{index}}">
            <v-tag content="{{item}}" bind:comment="onConfirm"></v-tag>
        </block>
    </view>
    <view class="title">
        <view class="line"></view>
        <text>热门搜索</text>
    </view>
    <view class="history-container">
        <block wx:for="{{hots}}" wx:key="{{index}}">
            <v-tag content="{{item}}" bind:comment="onConfirm"></v-tag>
        </block>
    </view>
</view>
<view class="result" wx:if="{{isSearch}}" >
    <block wx:for="{{books}}" wx:key="index">
        <v-book book="{{item}}"></v-book>
    </block>
</view>

search.wxss

.header{
    position: fixed;
    top:0;
    left: 0;
    z-index: 300;
    height:100rpx;
    display: flex;
    padding-left:20rpx;
    padding-right:20rpx;
    align-items: center;
    border-top: 1rpx solid #eee;
    border-bottom: 1rpx solid #eee;
    flex-direction: row;
    background: #fff;
}
.search{
    width:530rpx;
    height:70rpx;
    background: rgb(245, 245, 245);
    border-radius:30rpx;
    padding-left: 20rpx;
    display: flex;
    align-items: center;
}
.search input{
    flex:1;
    margin-left: 20rpx;
}
.cancel{
    height:70rpx;
    border-radius: 30rpx;
    line-height: 70rpx;
    border-color: #888;
}
.container{
    margin-top: 100rpx;
    padding: 20rpx;
}
.title{
    display: flex;
    height:90rpx;
    align-items: center;
}
.line{
    height:40rpx;
    width:10rpx;
    background: #333;
}
.result{
    margin-top: 100rpx;
    padding-left:90rpx;
    padding-right:90rpx;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
v-book{
    margin-bottom: 60rpx;
}

search.js

// components/search/search.js
import { Keyword } from "../../models/keyword";
import { BookModel } from "../../models/book";
const keyword = new Keyword();
const bookModel = new BookModel();
Component({
  /**
   * 组件的属性列表
   */
  properties: {

  },

  /**
   * 组件的初始数据
   */
  data: {
    words: [],
    hots: [],
    books:[],
    isSearch:false,
    //给输入的默认值
    value:""
  },

  /**
   * 组件的方法列表
   */
  methods: {
    onConfirm(event) {
      let value = event.detail.value;
      // 只有在服务器上能搜索到的关键字才添加到缓存中
      bookModel.getBookSearch(0, value).then(res => {
        if (res.total) {
          keyword.addHistory(value);
          let words = keyword.getHistory();
          this.setData({
            words,
            books:res.books,
            isSearch:true
          })
        }// console.log(res);
      })
    },
     onToggle() {
      this.setData({
        value: "",
        isSearch:false
      })
    },
    onCancel() {
      this.setData({
        isSearch: false
      })
    }
  },
  attached() {
    // keyword.getHistory();
    this.setData({
      words: keyword.getHistory()
    })
    keyword.getHotData().then(res => {
      // console.log(res.hot);
      this.setData({
        hots: res.hot
      })
    })
  }
})

models/keyword

import {HTTP} from "../utils/http-p";
class Keyword extends HTTP{
    getHistory(){
        const words = wx.getStorageSync('q')
        if(words){
            return words
        }else{
            return [];
        }
    }
    addHistory(value){
        var words = this.getHistory();
        const has = words.includes(value);
        if(value && !has){
            if(words.length>4){
                words.pop()
            }
            words.unshift(value);
            wx.setStorageSync('q', words)
        }
    }
    getHotData(){
        return this.request({
            url:`/book/hot_keyword`
        })
    }
    getKeyword(start,value){
        return this.request({
            url:`/book/search`,
            data:{
                start,
                q:value
            }
        })
    }
}
export {Keyword}

models/book

import {HTTP} from "../utils/http-p";
class BookModel extends HTTP{
    getHotBook(){
       return this.request({
            url:"/book/hot_list"
        })
    }
    getBookDateil(id){
        return this.request({
            url:`/book/${id}/detail`
        })
    }
    getBookComment(id){
        return this.request({
            url:`/book/${id}/short_comment`
        })
    }
    getBookLike(id){
        return this.request({
            url:`/book/${id}/favor`
        })
    }
    // 新增短评
    addNewComment(id,content){
        return this.request({
            url:`/book/add/short_comment`,
            method:"POST",
            data:{
                book_id:id,
                content
            }
        })
    }
    // 获取搜索结果
    getBookSearch(start,value){
        return this.request({
            url:`/book/search`,
            data:{
                start,
                q:value
            }
        })
    }
}
export {BookModel};


若本号内容有做得不到位的地方(比如:涉及版权或其他问题),请及时联系我们进行整改即可,会在第一时间进行处理。


请点赞!因为你们的赞同/鼓励是我写作的最大动力!

欢迎关注达叔小生的简书!

这是一个有质量,有态度的博客

原文地址:https://www.cnblogs.com/dashucoding/p/11406595.html

时间: 2024-11-14 04:47:05

微信小程序搜索框代码组件的相关文章

微信小程序 —搜索框

wxSearch优雅的微信小程序搜索框 一.功能 支持自定义热门key 支持搜索历史 支持搜索建议 支持搜索历史(记录)缓存 二.使用 1.将wxSearch文件夹整个拷贝到根目录下 2.引入 // wxml中引入模板 <import src="/wxSearch/wxSearch.wxml"/> <template is="wxSearch" data="{{wxSearchData}}"/> // wxss中引入 @i

微信小程序--搜索关键词高亮

代码地址如下:http://www.demodashi.com/demo/14249.html 一.前期准备工作 软件环境:微信开发者工具 官方下载地址:https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html 1.基本需求. 实现搜索关键词高亮 2.案例目录结构 二.程序实现具体步骤 1.index.wxml代码 <!--index.wxml--> <view class="container"

微信小程序开发-地图map组件上使用input组件

微信小程序开发-地图map组件上使用input组件 标签: 微信小程序 uni-app 原生组件层级关系 微信小程序在最高层级 在微信小程序中原生组件包括camera canvas input(仅在focus时表现为原生组件) live-player live-pusher map textarea video 在微信小程序开发中原生组件的层级是最高的,所以页面中的其他组件无论设置 z-index 为多少,都无法盖在原生组件上. 后插入的原生组件可以覆盖之前的原生组件. 原生组件还无法在 pic

微信小程序搜索排名怎么优化

微信小程序搜索排名怎么优化?小程序的发展,让众多在PC互联网时代转型受阻的企业看到了希望.大家都想利用小程序来发展线上渠道,但是小程序是如何进行搜索排名的呢?可能大家都不太了解,现在小程序开发公司多享科技为大家讲述一下. 1.小程序排名的名字(标题) 不少对网站排名seo有一定了解的都应该知道,网页排名中国有一个很重要的因素就是网页标题怎么书写.同理,小出现排名中标题的书写同样很重要.并且小程序标题在同一个平台(微信.支付宝)中具有唯一性,先注册先得哦. 2.小程序的关键词 小程序关键词设置需要

微信小程序开发—快速掌握组件及API的方法---转载

微信小程序框架为开发者提供了一系列的组件和API接口. 组件主要完成小程序的视图部分,例如文字.图片显示.API主要完成逻辑功能,例如网络请求.数据存储.音视频播放控制,以及微信开放的微信登录.微信支付等功能. 组件 官方文档:https://mp.weixin.qq.com/debug/wxadoc/dev/component/ 对于开发文档,个人建议先了解其整体框架,了解其提供了哪些组件,再联想到这些组件会用在哪些产品的哪些功能.对于接口也是一样,整体了解,而不需要细看. 熟悉了文档的结构,

微信小程序开发05-日历组件的实现

接上文:微信小程序开发04-打造自己的UI库 github地址:https://github.com/yexiaochai/wxdemo 我们这里继续实现我们的日历组件,这个日历组件稍微有点特殊,算是相对复杂的组件了,然后一般的日历组件又会有很多的变化,所以我们这里实现最基本的标签即可: 1 let View = require('behavior-view'); 2 const util = require('../utils/util.js'); 3 4 // const dateUtil

微信小程序开发之代码提示插件(VSCode)

minapp 微信小程序标签.属性的智能补全(同时支持原生小程序.mpvue 和 wepy 框架,并提供 snippets). wechat-snippet 微信小程序代码辅助,代码片段自动完成 微信小程序定义文件 放到项目顶层目录的typlings中. https://github.com/wechat-miniprogram/api-typings 原文地址:https://www.cnblogs.com/imagineAct/p/wx-miniapp-code-snippet.html

微信小程序(3)——常用的组件

view: view是小程序中的视图容器之一,似于html中的<div>标签 <view class="section"> <view class="section__title">flex-direction: row</view> <view class="flex-wrp" style="flex-direction:row;"> <view class=

手摸手教你微信小程序开发之自定义组件

前言 相信大家在开发小程序时会遇到某个功能多次使用的情况,比如弹出框.这个时候大家首先想到的是组件化开发,就是把弹出框封装成一个组件,然后哪里使用哪里就调用,对,看来大家都是有思路的人,但是要怎样实现呢.可能你会去看官方文档,但是微信的官方文档也是说的不太清楚,所以写起来也是非常痛苦.今天就带大家手摸手开发微信组件,坐稳了,马路杀手要开车了. 具体实现 我们先实现个简单的弹窗组件,详情图如下: 1.新建component文件夹存放我们的组件,里边存放的就是我们所用的组件,我们今天要做的事弹出框,