Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use anti-shake function in vue

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of how to use the anti-shake function in vue, the content is detailed and easy to understand, the operation is simple and fast, and has a certain reference value, I believe you will have something to gain after reading this vue article on how to use the anti-shake function, let's take a look.

The specific methods are as follows:

1. First, create a new utils.js file and define an anti-shake function in the file

Export default {

Debounce (fn, delay = 300) {

Var timer

Return function () {

Var args = arguments

If (timer) {

ClearTimeout (timer)

}

Timer = setTimeout () = > {

Fn.apply (this, args)

}, delay)

}

}

}

two。 After the anti-shake function is defined, create a vue.js project in vue-cli

Vue create project-name

After the 3.vue.js project is created, use the import method to introduce the utils.js file in the project

Import utils from "@ / js/utils"

4. Finally, after introducing the utils.js file, you can use the methods method to call the anti-shake function.

Export default {

Methods: {

Search: utils.debounce (function () {

Let v = this

Let serchURL = `/ movie/search?q=$ {v.searchText} & start=0&count= 10`

V.$axios

.get (serchURL)

.then (response = > {

V.processSearchData (response.data)

})

.catch (error = > {

Console.log (error)

})

.finally ()

})

}

}

This is the end of the article on "how to use anti-shake function in vue". Thank you for reading! I believe that everyone has a certain understanding of the knowledge of "how to use anti-shake function in vue". If you want to learn more knowledge, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report