关于xmlhttprequest
gaotianpu
2008-12-31
xmlhttprequest,或者说MS的那个相同功能的控件,
是不是只支持GET,POST方法? 我尝试使用PUT,DELETE,发现无法向服务器端发参数! 牛人求解? 我的gtalk:gaotianpu@gmail.com 随时候教! |
|
xo_tobacoo
2009-01-10
官方文档:http://msdn.microsoft.com/en-us/library/ms536648(VS.85).aspx
The following HTTP verbs and World Wide Web Distributed Authoring and Versioning (WebDAV) methods are supported: Verb / Method Defined In HTTP (RFC-2616) Defined In WebDAV (RFC-2518) Function GET HTTP WebDAV Request URI POST HTTP WebDAV Send data to server HEAD HTTP WebDAV Request URI without body PUT HTTP WebDAV Store data for URI DELETE HTTP WebDAV Delete data for URI MOVE WebDAV Move URI to to new location PROPFIND WebDAV Request URI Properties PROPPATCH WebDAV Update or Delete URI Properties MKCOL WebDAV Create collection at URI COPY WebDAV Create copy of URI LOCK WebDAV Create Lock UNLOCK WebDAV Remove Lock OPTIONS HTTP WebDAV Request URI Options Internet Explorer caches the results of HTTP GET requests in the Temporary Internet Files (TIF) folder. In most cases, caching improves performance for data that will not change frequently. To guarantee that the results are not cached, use POST. |