English 中文(简体)
使用吉大港山区邮政方法?
原标题:Use of HTTP Post method?
最佳回答
问题回答

一种不同之处是,GET数据(在URL中,正如另一个答案所言)在作为环境变量内容的*nix服务器上显示。 不管如何包装和发送,我的经验中,GET和POST的数据在格式上是一样的。

@Mohit编辑了他的问题,以补充:“你回答时,要特别考虑数据储存的含义,除填充外,在员额方法上更新数据。 “......

http://www.w3.org/ protocols/rfc2616/rfc2616.html“rel=“nofollow”rfc2616,Hypertext Transfer Protocol www.w3.org/spanish/ga/president 9.5 POST:

“GET方法是指检索......信息......

“使用POST方法要求原服务器接受”信息。

为了严格遵守第rfc2616条,将GET方法用于的服务器数据。 将POST方法用于write data to 服务器。

“数据存储、数据更新”的确如此。 这怎么可能更加明确或更明确?

POST将数据寄给该机构,而GET将数据输入URL...

例如,由于GET将数据输入URL,因此将文件上载到用户的可见度,时间有限。

例如见





相关问题
How to set response filename without forcing "save as" dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior I m looking for is this: If the browser is able to render content of the given content type then it ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

Java HTTPAUTH

我试图把桌面应用程序连接起来,我是同D.icio.us api @ Delicious Alan书写的,简单地向他们提供我的用户名和密码,并请他把书记上写给我......。

Finding out where curl was redirected

I m using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...