编辑
2023-09-20
Css3
0
请注意,本文编写于 429 天前,最后修改于 429 天前,其中某些信息可能已经过时。

目录

http请求

http请求

function sendGetRequest(url, callback) { var xhr = new XMLHttpRequest(); xhr.open("GET", url, true); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var response = JSON.parse(xhr.responseText); callback(response); } }; xhr.send(); } // 调用示例 sendGetRequest("https://api.example.com/data", function(response) { console.log(response); });

本文作者:宁骑

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!