项目描述
上传时间
浏览人数
以下是自己翻译版本
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);