【js】js发送get请求
用原生js发送网络请求var httpRequest = new XMLHttpRequest();//第一步:建立所需的对象httpRequest.open('GET', 'url', true);//第二步:打开连接将请求参数写在url中ps:"http://localhost:8080/rest/xxx"httpRequest.send();//第三步:发送请求将请求参数写在URL中/***
·
用原生js发送网络请求
var httpRequest = new XMLHttpRequest();//第一步:建立所需的对象
httpRequest.open('GET', 'url', true);//第二步:打开连接 将请求参数写在url中 ps:"http://localhost:8080/rest/xxx"
httpRequest.send();//第三步:发送请求 将请求参数写在URL中
/**
* 获取数据后的处理程序
*/
httpRequest.onreadystatechange = function () {
if (httpRequest.readyState == 4 && httpRequest.status == 200) {
var json = httpRequest.responseText;//获取到json字符串,还需解析
console.log(json);
}
};
更多推荐
已为社区贡献6条内容
所有评论(0)