我根据自己的经验使用了这两件事 我认为方法和类型都是 POST 和 GET 方法。
但似乎他们不相似。?
如果我使用type
它正在使用serializeing
表单数据..
如果我写method
它不起作用,任何人都能解释它们之间的差异吗??
$.ajax({
url: "controller.php",
type: 'POST',
method: "POST",
dataType: "json",
});
帮助被挪用。
答案 0 :(得分:14)
类型(默认:' GET') 类型:字符串 方法的别名。如果您使用1.9.0之前的jQuery版本,则应使用类型。
答案 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类型中重命名为方法