将 header 传递给 html 表单
在Java中,我可以使用指定http标头
client = new DefaultHttpClient();
HttpGet get = new HttpGet(url);
get.addHeader(key, value);
现在我需要创建一个html表单,如何传递相同的数据信息?
In Java I am able to specify http header using
client = new DefaultHttpClient();
HttpGet get = new HttpGet(url);
get.addHeader(key, value);
Now I need to create an html form, how do I pass the same data information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用纯 HTML,您无法使用户的浏览器发送特定标头(
Post-Data
等除外)。如果您需要发送 HTTP 标头,则必须使用 Javascript
XMLHTTPRequest
或其他动态设备。请参阅这个问题。You cannot, with pure HTML, cause the user's browser to send a particular header (other than
Post-Data
and so on).If you need to send HTTP headers you'll have to use a Javascript
XMLHTTPRequest
or other dynamic device. See this SO question.