Summary of commonly used tool functions in Vue projects

Summary of commonly used tool functions in Vue projects

Preface

This article records some commonly used tool functions in Vue projects. For unified management of tool functions, these functions are uniformly placed in the utils folder under the src directory

1. Custom focus command

1. Method 1

mouted cycle, ref+querySelector gets the input tag and calls focus()

2. Method 2

Custom directives (local) directives:fofo(inserted), defined and used on the tag, v-fofo

3. Method 3

Global custom instructions, recommended (high reusability). Just import it in main.js and use it. The code is as follows (example):

import Vue from 'vue'

Vue.directive("fofo",{
  inserted(el) {
    // Determine the name of the element obtained if (el.nodeName === 'INPUT' || el.nodeName === 'TEXTAREA') {
      el.focus()
  	} else {
     // Try to get the inner layer el.querySelector('input').focus()
    }
  }
})

2. Input box anti-shake

1. Demand

When the user enters content in the input box, in order to get the user's input content and feed it back to the server, it is necessary to monitor the input event of the input box. However, when the value of the input box changes, an Ajax request is sent immediately, which will cause some unnecessary Ajax requests. When the user stops typing and waits for a certain period of time, the request is sent to the background, which can reduce some unnecessary requests.

2. Ideas

When the user starts typing, a timer is started. If the user does not enter any content again after the timer ends, an Ajax request is sent to the background. If the user inputs again within the specified time, the previous timer will be cleared and the timer will be restarted.

3. Code implementation

Here is an example to demonstrate that after understanding the implementation principle, the code can be extracted. The code is as follows (example):

<template>
	<div>
        <input type="text" v-model="kw" @input="inputFn"/>
    </div>
</template>
<script>
export default{
    data(){
        return {
            kw:'',
            timer:null
        }
    },
    methods:{
        inputFn(){
            clearTimeout(this.timer)
      		this.timer = setTimeout(() => {
                if(this.kw === '') return
                // Here you can send an Ajax request to get the search association list returned by the background according to the keywords entered by the user console.log(this.kw)
            }, 1000) // When the user stops inputting content for one second, the logic in the timer will be executed. If the user writes content again within one second, the timer will be restarted. }
   	}
}
</script>

3. Keyword highlighting

1. Demand

When a user searches for a keyword in the input box, the color of the keyword in the displayed association list will change, allowing the user to see the desired results more intuitively.

2. Ideas

Encapsulate a lightFn function, which receives two arguments, the first is the string to be modified, and the second is the keyword to be matched

3. Code Demonstration

The code is as follows (example):

export const lightFn = (str, targetStr) => {
    // Ignore case and match globally const reg = new RegExp(targetStr, 'ig')
  return str.replace(reg, match => {
    return `<span style="color:red">${match}</span>`
  })
}

IV. Format the time stored in Excel table

1. Demand

Convert the time stored in the Excel table to be imported from the Excel format to the format used for storage.

2. Code Demonstration

This code is quoted from Lan Yuxi. Thanks to this big guy, I will collect it here~ The code is as follows (example):

export function formatExcelDate(numb, format = '/') {
  const time = new Date((numb - 25567) * 24 * 3600000 - 5 * 60 * 1000 - 43 * 1000 - 24 * 3600000 - 8 * 3600000)
  time.setYear(time.getFullYear())
  const year = time.getFullYear() + ''
  const month = time.getMonth() + 1 + ''
  const date = time.getDate() + ''
  if (format && format.length === 1) {
    return year + format + month + format + date
  }
  return year + (month < 10 ? '0' + month : month) + (date < 10 ? '0' + date : date)
}

Summarize

This is the end of this article about the commonly used tool functions in Vue projects. For more relevant Vue commonly used tool functions, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the utility function examples in Vue

<<:  Nginx/Httpd reverse proxy tomcat configuration tutorial

>>:  Using System.Drawing.Common in Linux/Docker

Recommend

Complete steps to install Anaconda3 in Ubuntu environment

Table of contents Introduction to Anaconda 1. Dow...

Win10 installation Linux system tutorial diagram

To install a virtual machine on a Windows system,...

nginx automatically generates configuration files in docker container

When a company builds Docker automated deployment...

Implementation of multi-environment configuration (.env) of vue project

Table of contents What is multi-environment confi...

How to add Vite support to old Vue projects

1. Introduction I have taken over a project of th...

HTML dl, dt, dd tags to create a table vs. Table creation table

Not only does it reduce the cost of website develo...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

How to configure static network connection in Linux

Configuring network connectivity for Linux system...

vue-router hook function implements routing guard

Table of contents Overview Global hook function R...

Details on overriding prototype methods in JavaScript instance objects

Table of contents In JavaScript , we can usually ...

Docker solution for logging in without root privileges

When you use the docker command for the first tim...

Detailed steps to install CentOS7 system on VMWare virtual machine

Pre-installation work: Make sure vmware workstati...

The rel attribute of the HTML link tag

The <link> tag defines the relationship bet...

Native JS to implement sharing sidebar

This article shares a sharing sidebar implemented...