post 请求中的换行符
我想发送换行符作为发布请求(文本)变量值的一部分。我正在使用 wget 来触发请求。我该如何编码?
I want to send new-line-character as part of a value of a post request (text)variable. I am using wget to fire the request. How do I code that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 W3C 规范,您对换行符为
x-www-form-urlencoded
格式中的%0D%0A
——这是您交给--post-data wget 选项。
According to the W3C spec, you encode a line break as
%0D%0A
in thex-www-form-urlencoded
format -- which is what you hand to the--post-data
option to wget.