直播平臺搭建,uni-app 實現搜尋關鍵詞高亮效果
直播平臺搭建,uni-app 實現搜尋關鍵詞高亮效果
1. 封裝搜尋關鍵詞方法
// 搜尋關鍵詞 export function searchKeyword (keyword, city) { return new Promise((resove, reject) => { const qqmapsdk = new QQMapWX({ key: 'VNBBZ-SKMRW-U5TR5-OIYQZ-VEOMF-IABLP', //之前在騰訊位置服務申請的key }) qqmapsdk.getSuggestion({ keyword: keyword, //搜尋關鍵詞 region: city, //城市名 region_fix: 1, //固定在當前城市 success: (res) => { resove(res) }, fail: (e) => { reject(e) }, }) }) }
2. 實現程式碼
<template> <view> <!-- 地址搜尋 --> <view> <view @click="getCityList"> <text class="city u-line-1">{{ city }}</text> <u-icon name="arrow-down" color="#474A54" size="10"></u-icon> </view> <view> <u-search placeholder="請輸入地址" v-model="keyword" shape="square" :clearabled="true" height="65rpx" bgColor="#F5F6FA" borderColor="#ECECEC" :animation="true" :showAction="false" @change="getsuggestList" ></u-search> </view> </view> <!-- 搜尋地址結果 --> <view v-if="filterList.length > 0"> <scroll-view scroll-y scroll-with-animation :scroll-top="scrollTop" :style="{ height: `calc(100vh - 53px)` }" > <block v-for="(item, index) in filterList" :key="index"> <view @click="selectFilterLocation(item)"> <rich-text :nodes="item.titleStyle"></rich-text> <view>{{ item.address }}</view> </view> </block> </scroll-view> </view> <!-- 無搜尋結果 --> <view v-if="filterList.length === 0 && showEmpty"> <u-empty mode="search" text="沒發現這個地址,換個關鍵詞試試吧~" marginTop="100" /> </view> </view> </template> <script> import { searchKeyword } from '@/utils/tool.js' export default { data() { return { city:'青島' keyword: '', //搜尋關鍵詞 filterList: [], //搜尋結果 showEmpty: false, // 搜尋空狀態 } }, methods:{ // 點選搜尋的任意一條 selectFilterLocation(e) { //做一些儲存操作或者根據專案需求自己改 uni.setStorageSync("xxx", e) this.filterList = [] this.keyword = '' }, // input輸入框發生改變 getsuggestList(keyword) { if (keyword === '') { this.filterList = [] this.showEmpty = false return } //過濾符合條件的值 searchKeyword(keyword, this.relocation.city) .then((res) => { console.log(res, '篩選陣列'); let sug = [] res.data.forEach((item) => { sug.push({ id: item.id, location: item.title, titleStyle: this.join(item.title, keyword), address: item.address, city: item.city, lat: item.location.lat, lng: item.location.lng, }) }) this.filterList = sug if (this.filterList.length === 0) { this.showEmpty = true } else { this.showEmpty = false } }) .catch((err) => { console.log(err) }) }, // 拼接 關鍵詞高亮 join(str, key) { var reg = new RegExp(`(${key})`, 'gm') var replace = '<span style="color:#F3671A;font-weight:bold;">$1</span>' return str.replace(reg, replace) }, </script> <style scoped> .searchCon { display: flex; align-items: center; padding: 0 22upx; box-sizing: border-box; background: #fff; border-bottom: 1upx solid #eee; .cityCon { margin-right: 36upx; display: flex; align-items: baseline; .city { max-width: 155upx; font-size: 27upx; margin-right: 8upx; } } .searchInput { flex: 1; margin: 18upx auto; } } .filterList { position: absolute; top: 106upx; bottom: 0; left: 0; right: 0; background: #fff; padding: 0 22upx; .item { padding: 22upx 0; border-bottom: 1upx solid #eee; .filterTitle { font-size: 30upx; color: #333; } .address { font-size: 26upx; color: #999; } } } </style>
以上就是直播平臺搭建,uni-app 實現搜尋關鍵詞高亮效果, 更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2931910/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 直播電商平臺開發,uni-app 實現搜尋關鍵詞高亮效果APP
- 微信小程式實現搜尋關鍵詞高亮微信小程式
- JavaScript 搜尋關鍵字高亮效果JavaScript
- vue2實現搜尋結果中的搜尋關鍵字高亮Vue
- ionic2/ionic3 實現搜尋結果中的搜尋關鍵字高亮
- 匹配搜尋關鍵高亮 new RegEXP 填坑
- 帝國CMS搜尋列表頁關鍵字高亮的更改實現方法教程
- 搭建直播平臺,給首頁配備搜尋框
- 高亮:單關鍵詞、多關鍵詞、多組多關鍵詞,從簡單到複雜實現滿足多方面需求的頁面關鍵詞高亮
- 成品直播原始碼,實現在平臺內部的搜尋原始碼
- 語音技術——關鍵詞搜尋
- 線上直播系統原始碼,vue實現搜尋文字高亮功能原始碼Vue
- 直播平臺搭建原始碼,bootstrap實現圖片輪播效果原始碼boot
- 易優cms 搜尋結果頁讓關鍵詞高亮飄紅 Eyoucms快速入門
- BM42:語義搜尋與關鍵詞搜尋結合
- Trie|如何用字典樹實現搜尋引擎的關鍵詞提示功能
- 直播平臺開發,基礎搜尋方式之拼音搜尋
- JavaFx 關鍵字高亮文字實現Java
- 網站最佳化搜尋引擎與關鍵詞網站
- 直播平臺搭建,自定義氣泡效果(BubbleView)View
- 直播平臺開發,使用swiper實現輪播效果
- 淘寶API介面:獲得關鍵詞搜尋推薦API
- 小程式搜尋自定義關鍵詞功能關閉意欲何為?
- 亞馬遜平臺使用API介面透過關鍵字搜尋商品亞馬遜API
- 微信小程式實現全域性搜尋程式碼高亮微信小程式
- 搭建直播平臺,uniapp捲軸置頂實現APP
- 直播平臺搭建,實現圖片縮圖功能
- 直播平臺軟體開發,uni-app實現選項卡功能APP
- 程式設計師 SEO 系列:如何找到更多搜尋關鍵詞?程式設計師
- 搜尋關鍵詞優化 助力全網霸屏營銷優化
- Pig 實現關鍵詞匹配
- 搭建自己的直播平臺,實現exe單例模式單例模式
- 線上直播系統原始碼,實現搜尋後介面顯示商品列表效果原始碼
- 直播平臺原始碼,Android自定義View實現呼吸燈效果原始碼AndroidView
- data.ai:2021年App Store搜尋關鍵詞熱度榜AIAPP
- Finbold:“賽博朋克2077”關鍵詞搜尋量全球飆升426.31%
- 如何搭建直播平臺?直播平臺搭建需要注意什麼?
- 1688關鍵字搜尋介面