【AJAX】jQuery中AJAX请求常见常用的几种方法

文章目录

    • jQuery中AJAX请求常见常用的几种方法
      • 1.$.ajax()方法
      • 2.$.get()方法 和 $.post(方法)
      • 3.$.getJSON()方法

jQuery中AJAX请求常见常用的几种方法


1.$.ajax()方法

可以在服务器端请求失败后依然调用回调函数

			$.ajax({
     
				"url": "send/array/one.html",		//请求目标资源的地址
				"type": "post",						//请求方式
				"data": {
     							//要发送的请求参数
					"array": [5,8,12]
				},
				"dataType": "text",					//如何对待服务器端返回的数据(服务器返回什么数据你无法决定,但是你可以决定怎么对待)
				"success": function(response) {
     		//服务器端成功处理请求后调用的回调函数,response是响应体数据
					alert(response);
				},
				"error":function(response) {
     		//服务器端处理请求失败后调用的回调函数,response是响应体数据
					alert(response);
				}
			});


2.$.get()方法 和 $.post(方法)

(1).服务器端成功处理了请求才能够掉回调回调函数,即响应码必须是200
(2).因为get或post已经写明了请求的类型,所以不用传入type参数了


3.$.getJSON()方法

写明了请求的类型并且写明返回的数据类型,因此可以少传两个参数。

你可能感兴趣的:(JavaWeb,ajax,jquery)