摘要:
在服务器将集合转换为json字符串发送给前端后 在前端接收时需要将其转换为数组进行操作 var userArr = eval(data); 阅读全文
摘要:
//首先创建xmlHttpRequest对象 var xmlhttprequest = new XMLHttpRequest(); //创建open设置参数 true是代表异步请求 xmlhttprequest.open("GET","http://localhost:8080/untitled_w 阅读全文
摘要:
json内可以包括任何字符类型 var JsonObj = { "key":value, "key2":"abc", "key3":true } 阅读全文