请求API中添加?t=‘+Date.now()

Posted 江州益彤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请求API中添加?t=‘+Date.now()相关的知识,希望对你有一定的参考价值。

请求API中添加?t=’+Date.now()
例如:xhr.open(“GET”,‘http://127.0.0.1:8000/ie?t=’+Date.now());

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IE缓存问题</title>
    <style>
        #result{
            width:200px;
            height:100px;
            border:solid 1px #258;
        }
    </style>
</head>
<body>
    <button>点击发送请求</button>
    <div id="result"></div>
    <script>
        const btn = document.getElementsByTagName('button')[0];
        const result = document.querySelector('#result');

        btn.addEventListener('click', function(){
            const xhr = new XMLHttpRequest();
            xhr.open("GET",'http://127.0.0.1:8000/ie?t='+Date.now());
            xhr.send();
            xhr.onreadystatechange = function(){
                if(xhr.readyState === 4){
                    if(xhr.status >= 200 && xhr.status< 300){
                        result.innerHTML = xhr.response;
                    }
                }
            }
        })
    </script>
</body>
</html>

以上是关于请求API中添加?t=‘+Date.now()的主要内容,如果未能解决你的问题,请参考以下文章

Js 之暂停执行JS代码

小程序wx.request请求的简单封装

Stripe 创建使用记录错误 - 时间戳必须早于订阅的当前周期结束时间 - Date.now()?

passport.js 中的 Date.now 无法完成

无法向(猫鼬)对象添加其他元素

api 请求中不接受 REACT.js 变量