是否可以像使用 Pug 或 EJS 但没有视图引擎那样从服务器端向客户端发送信息?
现在我正在使用 XHTTP 请求来访问数据,但是不必如此频繁地使用它会容易得多。
function getAllBears(id){
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("allBear").innerHTML = this.responseText;
}
};
xhttp.open("GET", "allBears", true);
xhttp.send();
}
阿晨1998
凤凰求蛊
相关分类