uniapp多组数组 搜索高亮效果demo(整理)

bash 复制代码
<template>
	<view class="mT100">
		<input type="text" v-model="keyword" @input="filterList" placeholder="请输入关键词">
		<ul>
			<li v-for="item in filteredList" :key="item.id">
				<span v-html="highlightKeyword(item.name)"></span>
			</li>
		</ul>

		<ul>
			<li v-for="item in filteredList1" :key="item.id">
				<span v-html="highlightKeyword(item.name)"></span>
			</li>
		</ul>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				keyword: '',
				list: [{
						name: '测试1',
						id: 1
					},
					{
						name: '测试2',
						id: 2
					},
					{
						name: '测试3',
						id: 3
					},
				],
				list1: [{
						name: '测试10',
						id: 1
					},
					{
						name: '测试20',
						id: 2
					},
					{
						name: '测试30',
						id: 3
					},
				],
			};
		},
		computed: {
			filteredList() {
				if (this.keyword === '') {
					return this.list;
				}
				return this.list.filter(item => item.name.includes(this.keyword));
			},
			filteredList1() {
				if (this.keyword === '') {
					return this.list1;
				}
				return this.list1.filter(item => item.name.includes(this.keyword));
			},
		},
		methods: {
			highlightKeyword(text) {
				if (!this.keyword) {
					return text;
				}
				const regex = new RegExp(`(${this.keyword})`, 'gi');
				return text.replace(regex, '<span style="color: red;">$1</span>');
			},
			filterList() {
				// 当关键词变化时,重新过滤列表
				// 可以根据需求调整触发的时机,如在用户输入结束后再触发过滤
				// 这里使用input事件实时响应用户输入
			},
		},
	};
</script>
相关推荐
PABL016 小时前
uniapps使用HTML5的io模块拷贝文件目录
sqlite·uniapp·html5
寰宇软件7 小时前
PHP同城配送小程序
微信小程序·vue·php·uniapp
寰宇软件9 小时前
PHP企业IM客服系统
微信小程序·vue·php·uniapp
上趣工作室8 天前
uniapp中rpx和upx的区别
vue.js·uniapp
oil欧哟8 天前
uniapp 小程序 textarea 层级穿透,聚焦光标位置错误怎么办?
vue.js·小程序·uni-app·uniapp
前端开发菜鸟的自我修养10 天前
uniApp通过xgplayer(西瓜播放器)接入视频实时监控
前端·javascript·vue.js·uniapp·实时音视频·监控·视频
duansamve10 天前
Uniapp中实现加载更多、下拉刷新、返回顶部功能
uniapp
—Qeyser16 天前
UNI-APP弹窗
微信小程序·uniapp
我开心就好o17 天前
uniapp3 手写签名组件(vue3 语法)封装与应用
javascript·vue.js·微信小程序·uniapp·手写签名
后端转全栈_小伵17 天前
小程序发版后,强制更新为最新版本
前端·微信小程序·小程序·自动化·uniapp