Nodejs中常见的接口定义(get、post)

一、get方式

1、问号携带参数形式:

     定义接口:app.get('/all',function(req,res){
                              req.query  接收参数
                      })
     调用:localhost:3000/all?age=12

     eg:

var express=require('express');
var app=express();
//问号
app.get('/all',function(req,res){
    console.log(req.url);
    res.send(req.query);
})
app.listen(3000,function(){
    console.log(3000);
})

 在地址栏中拼接数据:

2、result形式

     定义接口:app.get('/all/:uname/sex/:age',function(req,res){
                              req.params 接收参数
                       })
     调用:localhost:3000/all/xiaoming/sex/18

  eg:

var express=require('express');
var app=express();

//resfult
app.get('/student/:name/sex/:age',function(req,res){
    res.send(req.params);
})
app.listen(3000,function(){
    console.log(3000);
})

    在地址栏中调用:

二、post方式:

      定义接口:app.post("/all",function(req,res){
                                 req.body    接收参数
                        })
      需要依赖一个功能模块:body-parser
      引入模块:var bodyParser= require('body-parser')
      使用模块:app.use(bodyParser.json())
                       app.use(bodyParser.urlencoded({ extended: true }))

      调用:localhost:3000/all

      eg:

var express=require('express');
var bodyParser= require('body-parser');
var app=express();
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
//post
app.post('/class',function(req,res){
    res.send(req.body);
})
app.listen(3000,function(){
    console.log(3000);
})

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值