猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
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}/`); });
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
JavaScript
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续