我正在使用httpSync模块从服务器获取数据。
我有以下示例
var httpsync = require('httpsync');
var req = httpsync.request({
url: url,
method: "POST"
});
注意:
I am using httpSync because i want the request to behave synchronous.
I cannot add original code
如何使用
httpSync
将表单数据发送到服务器我尝试了以下方法,但无法正常工作
var req = httpsync.request({
url: url,
method: "POST"
form:{a:1,b:1}
});
任何建议将不胜感激
最佳答案
httpsync模块为此提供了一个示例。
检查此链接
https://github.com/fengmk2/node-curl/blob/master/example/upload_file.js
关于node.js - 如何在httpsync-node.js中发送表单数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25600895/