node框架的使用

node框架的使用

express创建api服务器( 接口 )

1.api服务器需要使用测试用具来测试,不能用浏览器展示
总结: api服务器就是给前端打造接口

注意: 后端工程师给前端工程师发送的接口数据类型时一个json类型的字符串
前端工程师需要用 JSON.parse() 转换

2.restful api 规则 ( 暴露接口的规则 )

举例:
http://localhost:3000/product 商品接口

要求: 删除商品中的一条

http://localhost:3000/product/delete 删除一条商品的接口

要求: 添加一条商品

http://localhost:3000/product/add 添加一条商品接口

要求: 修改一条商品的信息

http://localhost:3000/product/change 修改一条商品接口

上面这种做法对后端压力比较大
对一个的数据的操作,接口太多了

为了解决上面的冗余

我们使用了restful api的规则

什么是restful api ?

一个接口用不同数据请求方式来暴露

  将来接口只有一个,但是数据请求方式有多个

    http://localhost:3000/product 

      get 
      post
      delete
      put
      options
      head

总结:
1. 使用restful api 来暴露接口( 多个数据请求的接口 )
2. cors中间件的跨域
3. 前端发来的数据, 后端如何接受
- get req.query
- post req.body

你可能感兴趣的:(node)