猿问

node怎么编写数据接口?

初学node,如何编写数据接口,用以ajax交互呢?求demo或教程

慕哥9229398
浏览 639回答 1
1回答

拉风的咖菲猫

可以看看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}/`); });
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答