我可以调用XmlHttpRequest中的任何方法,不仅仅是GET,POST,PUT吗?
*更多信息:*
我将Controller命名为equal =
AccountsController
在Controller中我有一个名为equal
的方法Connnect(Account acc)
我想从该控制器调用此方法如何?
例如:
var xhr = new XmlHttpRequest();
xhr.open("CONNECT", "www.any.link/api/Accounts", true);
答案 0 :(得分:0)
您还可以使用HEAD
,DELETE
,OPTIONS
和CONNECT
。
有关详细信息,请访问此页面:
http://www.w3schools.com/tags/ref_httpmethods.asp
也许你觉得这篇文章很有用:
Are the PUT, DELETE, HEAD, etc methods available in most web browsers?