当前位置: 代码迷 >> 综合 >> express手册之四,routing(路由)
  详细解决方案

express手册之四,routing(路由)

热度:81   发布时间:2023-12-10 17:07:49.0


express的routing两个步骤

1.      新建处理.js

当请求 http://localhost:3000/data时,对请求数据处理

res为响应对象,send方法将json返回给客户端

 

 

2.      app.js声明

app.js作为该服务器的大门口,声明 /data

 

测试:http://localhost:3000/data

 

 

 

  相关解决方案