찾다

 >  Q&A  >  본문

node.js 的request-promise模块怎么发送带参数的POST请求啊

var rp = require('request-promise');
var options= {
        method:'post',
        uri:"http://192.168.0.37:8084/comments/praise",
        qs:{id:id},
        headers:{
            'User-Agent': 'Request-Promise'
        },
        json: true
    };
    rp(options).then(function(data){
        console.log(data)
    });

报错了,麻烦大神看下

黄舟黄舟2786일 전633

모든 응답(1)나는 대답할 것이다

  • 阿神

    阿神2017-04-17 16:12:24

    https://github.com/request/re...

    회신하다
    0
  • 취소회신하다