项目描述
上传时间
浏览人数
在项目中的应用
post方法
let un = "乌龙奶茶"; let pw = "wulongnaicha"; let fm = new FormData(); fm.append("username", un); fm.append("password", pw); let url = "http://106.14.192.118/admin_log"; let xmlHttp = new XMLHttpRequest(); xmlHttp.open("POST", url, false); xmlHttp.send(fm); let resp = xmlHttp.responseText; let jsonResp = JSON.parse(resp) console.(jsonResp)
get方法
let url = "http://106.14.192.118/query_by_page"; let xmlHttp = new XMLHttpRequest(); xmlHttp.open("GET", url, false); xmlHttp.send(); let resp = xmlHttp.responseText; let jsonResp = JSON.parse(resp); console.log(jsonResp);