博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax缓存,减少后台服务器压力
阅读量:5462 次
发布时间:2019-06-15

本文共 976 字,大约阅读时间需要 3 分钟。

//  Ajax缓存 请求一次,页面不会在次访问这个方法,会读取缓存数据

var reqScanTips; //定义一个

var cacheScanTips = {}; //放数据的
$(document).delegate(".routeScanTips","mouseenter", function () {
var $this = $(this);
var billcode = $(this).attr("data-sitecode");
var scanuser = $(this).attr("data-scanuser");
var key = "A027" + billcode + scanuser;
if (isCache) {
if (cacheScanTips[key] != null) {
$this.manhua_bubbletips({ position: "t", value: 35, content: cacheScanTips[key] + "", last: true });
} else {
postData();
}
} else {
postData();
}
function postData() {
reqScanTips = $.ajax({
type: "post",
dataType: "json",
url: "/postdate.aspx",
data: "id=" + billcode + "&type=A888&scanuser=" + scanuser,
cache: true,
timeout: 20000,
success: function (msg) {
if (msg.Result[0]["status"] == "true") {
$this.manhua_bubbletips({ position: "t", value: 35, content: msg.Result[0]["tel"] + "", last: true });
cacheScanTips[key] = msg.Result[0]["tel"];
}
}
});
}
});

 

转载于:https://www.cnblogs.com/linbicheng/p/4493392.html

你可能感兴趣的文章
Java入门系列-23-NIO(使用缓冲区和通道对文件操作)
查看>>
来自java文档 HashMap类
查看>>
Java中的内部类(一)静态内部类
查看>>
failed to load the jni shared library jvm
查看>>
Javascript编码风格
查看>>
django
查看>>
ASP.NET MVC 3 新特性
查看>>
vue报错信息
查看>>
布林带
查看>>
数据平滑
查看>>
奇异值分解
查看>>
快速傅里叶变换模块(fft)
查看>>
随机数模块(random)
查看>>
杂项功能(排序/插值/图像/金融相关)
查看>>
pandas核心
查看>>
线性回归
查看>>
机器学习学习索引
查看>>
多项式回归
查看>>
Python-字符串
查看>>
MySQL8.0安装以及介绍(二进制)
查看>>