色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

get 發(fā)送json

錢瀠龍2年前8瀏覽0評論

get發(fā)送json數(shù)據(jù):

$.ajax({
url: '/test',
type: 'GET',
dataType: 'json',
data: {
'param1': 'value1',
'param2': 'value2'
},
success: function(response) {
console.log(response);
},
error: function(xhr, status, error) {
console.log(error);
}
});

使用jQuery中的ajax方法發(fā)送Get請求,將數(shù)據(jù)類型設置為json。

將參數(shù)打包為一個包含鍵值對的對象,傳遞給ajax方法的data參數(shù)。服務器將收到一個類似于以下json格式的請求:

GET /test?param1=value1¶m2=value2 HTTP/1.1
Host: www.example.com

在成功接收到響應數(shù)據(jù)后,在success回調函數(shù)中處理返回的JSON數(shù)據(jù)。

如果出現(xiàn)錯誤,將在error回調函數(shù)中進行處理。