10.VUE学习之使用lodash库减少watch对后台请求的压力
Posted haima
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.VUE学习之使用lodash库减少watch对后台请求的压力相关的知识,希望对你有一定的参考价值。
问题描述
使用watch监听库里word的值的变化,获取新值后,用oxios发送的ajax异步请求,
此时会多次发送请求,浪费服务器资料.
解决办法
使用lodash库里的_.debounce函数延缓异步请求的时间,减少对后台请求的压力,设定库里值动态变化后在规定的时间后再异步请求
步骤:
1.安装lodash.
npm install lodash
使用说明:
文档地址:
https://www.css88.com/doc/lodash/#_debouncefunc-wait0-options
2.页面里引入js
<script type="text/javascript" src="../vue/node_modules/lodash/lodash.js"></script>
3.使用_.debounce函数
_.debounce(func, [wait=0], [options={}])
4.完整代码:
10.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>vue</title>
<link rel="stylesheet" href="">
<!--<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>-->
<script type="text/javascript" src="../js/vue.js"></script>
<!---发送异步请求-->
<script type="text/javascript" src="../vue/node_modules/axios/dist/axios.js"></script>
<!---延缓异步请求的时间-->
<script type="text/javascript" src="../vue/node_modules/lodash/lodash.js"></script>
</head>
<body>
<div id="vue">
<!--当input里的值改变时,会改变data里的word-->
<input type="text" v-model="word">
<h1>
<!--拿到data里的result里的值-->
结果:{{result}}
</h1>
</div>
</body>
<script type="text/javascript">
var app=new Vue({
el:‘#vue‘,
watch:{ //监听data里的word的变化
// 拿到input里的新值和旧值
word:_.debounce(
function(new_v,old_v){
// console.log(new_v+‘=>‘+old_v);
var url = ‘9.php?word=‘+new_v;
// ajax get异步请求
axios.get(url).then(function(response){
console.log(response);
app.result = response.data //赋值给data里的result
});
},1000 //1秒后执行
)
},
data:{
word:‘‘,
result:‘‘
}
});
</script>
</html>
10.php
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/1/5
* Time: 10:42
*/
print_r(‘要搜索的内容是:‘.$_GET[‘word‘]);
?>
以上是关于10.VUE学习之使用lodash库减少watch对后台请求的压力的主要内容,如果未能解决你的问题,请参考以下文章