溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Vue實(shí)現(xiàn)文本模糊匹配功能的方法

發(fā)布時(shí)間:2020-07-31 09:13:08 來(lái)源:億速云 閱讀:400 作者:小豬 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要講解了Vue實(shí)現(xiàn)文本模糊匹配功能的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

模糊匹配功能在下拉菜單的組件中用的非常多,于是打算寫(xiě)幾個(gè)demo看看細(xì)節(jié)上是如何實(shí)現(xiàn)的。

一、最簡(jiǎn)單的模糊匹配:計(jì)算屬性

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div id="app">
    <input type="text" v-model="message">
    <ul>
      <li v-for="(option, index) in matchedOptions" :key="index">{{ option }}</li>
    </ul>
  </div>
  <script src="./vue.js"></script>
  <script>
    new Vue({
      el: '#app',
      data: {
        message: '',
        options: ['html', 'css', 'javascript']
      },
      computed: {
        matchedOptions() {
          if (this.message !== '') {
            return this.options.filter(option => option.includes(this.message))
          }
          return this.options
        }
      }
    })
  </script>
</body>
</html>

在上面的例子中,計(jì)算屬性matchedOptions會(huì)在文本框內(nèi)容message變化時(shí)篩選options里的數(shù)據(jù),效果圖如下所示:

Vue實(shí)現(xiàn)文本模糊匹配功能的方法

二、使用作用域插槽實(shí)現(xiàn)

使用插槽主要是為了使該功能組件化:在select組件中插入option,然后option通過(guò)作用域插槽從select中獲取文本值:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div id="app">
    <my-select>
      <template #default="{ message }">
        <ul>
          <li v-for="(option, index) in options" :key="index" v-show="option.includes(message)">{{ option }}</li>
        </ul>
      </template>
    </my-select>
  </div>
  <script src="./vue.js"></script>
  <script>
    Vue.component('my-select', {
      template: `
        <div class="my-select">
          <input type="text" v-model="message">
          <slot :message="message"></slot>
        </div>
      `,
      data() {
        return {
          message: ''
        }
      }
    })
    new Vue({
      el: '#app',
      data: {
        options: ['html', 'css', 'javascript']
      }
    })
  </script>
</body>
</html>

全局注冊(cè)了my-select組件后,可以刪除app里的message數(shù)據(jù),使用v-show來(lái)控制選項(xiàng)的顯示,運(yùn)行效果和計(jì)算屬性方式相同。缺點(diǎn)就是無(wú)法單文件化(剛學(xué)vue沒(méi)多久,不知道怎么在單文件里使用作用域插槽,試過(guò)直接把template里的東西封裝成my-option好像并不管用)

三、混入廣播和派發(fā)方法在獨(dú)立組件中實(shí)現(xiàn)模糊匹配

首先需要一個(gè)emitter文件:

/**
 * 子組件廣播事件
 * @param {string} componentName 子組件名
 * @param {string} eventName 事件名
 * @param {...any} params 事件參數(shù)
 */
function _broadcast(componentName, eventName, ...params) {
  this.$children.forEach(child => {
    if (child.$options.name === componentName) {
      child.$emit(eventName, ...params)
    }
    _broadcast.call(child, componentName, eventName, ...params)
  })
}

/**
 * 父組件派發(fā)事件
 * @param {string} componentName 父組件名
 * @param {string} eventName 事件名
 * @param {...any} params 事件參數(shù)
 */
function _dispatch(componentName, eventName, ...params) {
  if (this.$parent) {
    if (this.$parent.$options.name === componentName) {
      this.$parent.$emit(eventName, ...params)
    }
    _dispatch.call(this.$parent, componentName, eventName, ...params)
  }
}

/**
 * mixin
 */
export default {
  methods: {
    broadcast(componentName, eventName, ...params) {
      _broadcast.call(this, componentName, eventName, ...params)
    },
    dispatch(componentName, eventName, ...params) {
      _dispatch.call(this, componentName, eventName, ...params)
    }
  }
}

注意,這里的$children和$parent都是指具有dom父子關(guān)系的vue組件。

最后,通過(guò)設(shè)置查詢條件來(lái)控制子組件的顯示與隱藏即可實(shí)現(xiàn)實(shí)時(shí)模糊搜索。

看完上述內(nèi)容,是不是對(duì)Vue實(shí)現(xiàn)文本模糊匹配功能的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI