cURL 窗口不显示 html 响应
Is there any way to not display the html response in the console? It's slowing down my project and I would like to disable it.
I simply use
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面是在 Windows 上执行此操作的方法
这告诉curl 将输出下载到 Windows 相当于
/dev/null
Here's how to do it on windows
This tells curl to download the output to the windows equivalent of
/dev/null
您可以将输出重定向到类 Unix 系统上的 /dev/null 或 Windows 系统上的 NUL。或者只是将其保存到一个文件中,仅在出现问题时进行检查。
您可以使用 shell 运算符 > 重定向输出或者您可以使用curl的.o(小写字母o)选项。
You can redirect the output to /dev/null on unix-like systems or NUL on windows systems. Or just save it to a file that only only check in case something goes wrong.
You redirect the output using the shell operator > or you can use curl's .o (lower case letter o) option.
您可以将输出定向到 /dev/null
You could direct the output to /dev/null