本文主要是介绍fourteen,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
搜索框功能实现
根据输入框信息传入,对比数据库对应表里的数据进行显示
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({
icon: 'none'
})
return
}
db.collection('hotMovie').where({
hotMovieName: db.RegExp({
regexp: this.data.search,
options: 'i',
}),
}).get().then(res => {
if (res.data.length != 0) {
console.log(res.data)
this.setData({
dianying: res.data
})
} else {
wx.showToast({
title: '未找到热播电影',
icon: 'none'
})
}
})
},
})
这篇关于fourteen的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!