ajax中类型和方法之间的差异是什么

时间:2017-04-21 12:50:07

标签: javascript jquery ajax post methods

我根据自己的经验使用了这两件事 我认为方法和类型都是 POST GET 方法。

  

但似乎他们不相似。?

如果我使用type它正在使用serializeing表单数据..

如果我写method它不起作用,任何人都能解释它们之间的差异吗??

$.ajax({
  url: "controller.php",
  type: 'POST',
  method: "POST",
  dataType: "json",
});

帮助被挪用。

3 个答案:

答案 0 :(得分:14)

类型(默认:' GET') 类型:字符串 方法的别名。如果您使用1.9.0之前的jQuery版本,则应使用类型。

http://api.jquery.com/jquery.ajax/

答案 1 :(得分:10)

来自:http://api.jquery.com/jquery.ajax/

方式

The HTTP method to use for the request (e.g. "POST", "GET", "PUT"). (version added: 1.9.0)

<强>型

An alias for method. You should use type if you're using versions of jQuery prior to 1.9.0.

答案 2 :(得分:4)

两者都相同,在新版本的jQuery类型中重命名为方法