用原生js发送网络请求
var httpRequest = new XMLHttpRequest();//第一步:建立所需的对象
('GET', 'url', true);//第二步:打开连接 将请求参数写在url中 ps:"http://localhost:8080/rest/xxx"
();//第三步:发送请求 将请求参数写在URL中
/**
* 获取数据后的处理程序
*/
= function () {
if ( == 4 && == 200) {
var json = ;//获取到json字符串,还需解析
(json);
}
};