您的位置:首页技术文章
文章详情页

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

【字号: 日期:2024-07-22 14:51:48浏览:44作者:猪猪

问题描述

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) });

报错了,麻烦大神看下

问题解答

回答1:

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

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

相关文章: