为了账号安全,请及时绑定邮箱和手机立即绑定

node怎么编写数据接口?

node怎么编写数据接口?

慕哥9229398 2018-09-06 14:31:05
初学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}/`);
});


查看完整回答
反对 回复 2018-10-23
  • 1 回答
  • 0 关注
  • 638 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信