使用 Node.js 中的数据进行 POST 请求
如何将带有数据(例如某些变量)的 POST 请求发送到 https 服务器并向最终用户显示结果?
How could I send POST request with data (eg. some variables) to the https server and display the results to the end user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
http.Client
模块。从文档中:我很确定您可以将
GET
与POST
交换;)Use the
http.Client
module. From the docs:I am pretty sure that you can exchange
GET
withPOST
;)