前端 定时把时间请求参数每天发送一次
时间: 2023-05-13 22:07:04 浏览: 205
PostMan for linux(http请求发送 , 接口调试工具)
可以使用 JavaScript 中的 setInterval() 方法来实现定时发送请求,具体代码如下:
```
setInterval(function() {
var date = new Date();
var time = date.getTime();
// 发送请求,将时间参数传递给后端
}, 24 * 60 * 60 * 1000); // 每隔一天发送一次请求
```
其中,24 * 60 * 60 * 1000 表示一天的毫秒数。每隔一天就会执行一次 setInterval() 中的函数,将当前时间作为参数发送给后端。
阅读全文