html打开微信搜索页,微信小程序实现搜索功能并跳转搜索结果页面

本文实例为大家分享了微信小程序实现搜索功能,并跳转搜索结果页面,供大家参考,具体内容如下

搜索页面:

search.wxml页面:

search.wxss样式:

.form {

position: relative;

height: 40px;

}

.searchInput {

border: 1px solid #2c3036;

height: 40px;

line-height: 40px;

font-size: 14px;

border-radius: 20px;

color: #bebec4;

padding-left: 35px;

}

search.js:

// 搜索

goSearch: function(e) {

var that = this;

var formData = e.detail.value;

if (formData) {

wx.request({

url: 'https://xxxxx/homepage/search',

data: {

title: formData

},

header: {

'Content-Type': 'application/json'

},

success: function(res) {

that.setData({

search: res.data,

})

if (res.data.msg=='无相关视频'){

wx.showToast({

title: '无相关视频',

icon: 'none',

duration: 1500

})

}else{

let str = JSON.stringify(res.data.result.data);

wx.navigateTo({

url: '../searchShow/searchShow?data=' + str

})

}

// console.log(res.data.msg)

}

})

} else {

wx.showToast({

title: '输入不能为空',

icon: 'none',

duration: 1500

})

}

}

搜索结果:

searchShow.wxml页面:

{{item.title}}

{{item.decription}}

searchShow.js

onLoad: function(options) {

let searchShow = JSON.parse(options.data);

let that = this

that.setData({

searchShow: searchShow

})

console.log(searchShow)

},

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值