AJAX 请求 NIDE 搭建简单服务

// ajax 请求4部曲 let xhr = new XMLHttpRequest(); xhr.open('GET','/api/user',true); xhr.onload = function () { console.log(xhr.response); } xhr.send(); let express = require('express'); let a
相关文章
相关标签/搜索