发送请求时添加一个随机数参数,让浏览器每次都…

2018-06-24 02:23:53来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>web_GET</title>
 6 </head>
 7 <body>
 8     <button class="btn">发送GET请求</button>
 9     <script src="./jquery.min.js"></script>
10     <script>
11         var page = {
12             init : function(){
13                 this.bindEvent();
14             },
15             bindEvent : function(){
16                 var _this = this;
17                 $(document).on('click','.btn',function(){
18                     //产生一个5位的随机数
19                     var rnd = _this.randomNum(5);
20                     console.log(rnd);
21                     $.ajax({
22                         type     : 'get',
23                         url      : 'http://10.10.0.190:3000/WorkStat/workstat/get_user_latest_work_hist?rnd='+rnd,
24                         dataType : 'json',
25                         data     : {
26                             user_id : 02519
27                         },
28                         success  : function(res){
29                             console.log(res);
30                         },
31                         error    : function(err){
32                             console.log(err);
33                         }
34 
35                     })
36                 })
37             },
38             //产生随机数函数
39             randomNum : function(n){
40                 var randomNum = '';
41                 for(var i=0; i<n; i++){
42                     randomNum += Math.floor(Math.random()*10);
43                 }
44                 return randomNum;
45             }
46         }
47         $(function(){
48             page.init();
49         })
50     </script>
51 </body>
52 </html>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Less 的用法

下一篇:CSS3中的选择器