微信小程序云开发实现搜索功能
微信小程序云开发实现搜索功能,供大家参考,具体内容如下
微信小程序使用云开发实现搜索功能有两种情况,一种是简单的搜索用关键字来查询数据,另一种是模糊查询关于关键字的全部数据查询。废话不用多说直接上代码部分。
简单搜索功能实现
WXML代码段
搜索
WXSS代码段
.sousuokuang {width: 100%; height: 100rpx; display: flex; flex-direction: column; align-items: center; background-color: white; }.sousuo {width: 92%; height: 100rpx; display: flex; flex-direction: row; align-items: center; justify-items: center; }.shurukuang {width: 80%; height: 64rpx; border-radius: 32rpx; display: flex; align-items: center; justify-content: center; background-color: #f6f6f6; }.shurukuang input {width: 90%; height: 100%; font-size: 32rpx; }.sousuo_anniu {width: 20%; height: 64rpx; display: flex; align-items: center; justify-content: center; }.sousuo_anniu text {font-size: 30rpx; }
JavaScript代码段
const db = wx.cloud.database()Page({data: {search: ''},onLoad: function (options) {},GetSearchInput: function(e) {this.setData({search: e.detail.value})},ToSearch: function(e) {if(this.data.search == '') {wx.showToast({title: '请输入',icon: 'none'})return}db.collection('输入你查询的表名').where({name: this.data.search}).get().then(res => {if(res.data.length != 0) {this.setData({shangpinbiao: res.data})}else {wx.showToast({title: '未找到商品',icon: 'none'})}})},})
模糊搜索功能实现 WXML代码段和WXSS代码段跟简单搜索的一样,JavaScript代码段如下
Javascript代码段
const db = wx.cloud.database()Page({data: {search: ''},onLoad: function (options) {},GetSearchInput: function (e) {this.setData({search: e.detail.value})},ToSearch: function (e) {if (this.data.search == '') {wx.showToast({title: '请输入',icon: 'none'})return}db.collection('输入你查询的表名').where({name: db.RegExp({regexp: this.data.search,options: 'i',}),}).get().then(res => {if (res.data.length != 0) {this.setData({shangpinbiao: res.data})} else {wx.showToast({title: '未找到',icon: 'none'})}})},})
文章图片
【微信小程序云开发实现搜索功能】以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- 微信小程序实现水平时间轴
- 投稿|马斯克学得了张小龙吗?
- 如何使用java在appium中垂直滚动混合应用程序
- 在WebView Android应用程序中推送通知
- 如何在Windows 10中使用命令行在Google Chrome中打开具有特定窗口大小的URL
- Android - WebSocket - 从最近使用的应用程序清除应用程序时,连接从服务中删除
- Android studio安装APK在手机上但无法找到该应用程序
- 百度小程序第三方平台开发,一整套流程
- Android中用于kotlin的静态等价物,以避免处理程序内存泄漏
- 垃圾收集器没有像在Android应用程序中那样释放“捶打内存”