node 请求接口

Posted 张书达

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node 请求接口相关的知识,希望对你有一定的参考价值。



1、app.js

var express = require(‘express‘)
const bodyParser = require(‘body-parser‘)
const cookieParser = require(‘cookie-parser‘);





var app = express();
app.use(bodyParser())
app.use(cookieParser())



app.get(‘/‘, function(req, res){
    console.log(req.query)
    res.json({success:100})
})
app.post(‘/‘, function(req, res){
    console.log(req.body)
    res.json({success:2000})
})




app.listen(3000)

2、client.js

var express = require(‘express‘)
var app = express();
var Client = require(‘node-rest-client‘).Client;
var client = new Client();

app.get(‘/‘, function(req, res){
    var args = {
        parameters: { arg1: "hello", arg2: "world" },
        headers: { "test-header": "client-api" }
    };
    client.get("http://localhost:3000",args, function (data, response) {
        console.log(data);
       // console.log(response);
    });

})
app.get(‘/abc‘, function(req, res){
    var args = {
        data: { test: "hello" ,user:11111},
        headers: { "Content-Type": "application/json" }
    };
    client.post("http://localhost:3000",args, function (data, response) {
        console.log(data);
        res.send(data)
       // console.log(response);
    });

})

app.listen(8888)

3、分别启动app.js 和 client.js

4、在网站出入locahost:8888

以上是关于node 请求接口的主要内容,如果未能解决你的问题,请参考以下文章

Node.js JavaScript 片段中的跳过代码

node-red 发布带请求参数的接口

使用 node 模拟请求接口

node 请求接口,返回大小限制

node 请求接口

node请求下载接口时乱码