This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RequestCounter/app/static/request.js
T
2022-04-14 22:20:50 +08:00

11 lines
320 B
JavaScript

function request_async(){
// 使用fetch()函数进行异步请求如果服务端响应速度极慢则不会阻塞页面
fetch('/api/v1/test').then(
response => response.text()
).then(
text => {
document.getElementById('fast_test_example_text').innerText = text
}
)
}