初学node,如何编写数据接口,用以ajax交互呢?求demo或教程
1 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
可以看看Express
或者koa
直接写nodejs
的话的node
下面的代码,ajax
中的dataType
修改成text
,就能请求到
const http = require('http');const hostname = '127.0.0.1';const port = 1337; http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n'); }).listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); });
添加回答
举报
0/150
提交
取消