如何使用jQuery Ajax post response params

时间:2015-04-06 11:44:31

标签: javascript jquery ajax

我想使用我在Ajax响应中收到的参数,但是我将它作为一个简单的字符串接收。

Ajax:

$.ajax({
    type: 'POST',
    url: url,
    data: str
}).done(function(res){
    // res is a simple string
    // => ResponseCode=0&Description=OK
});

假设我需要使用Description参数的值(OK)。

1 个答案:

答案 0 :(得分:-3)

$.ajax({
    type: 'POST',
    url: url,
    dataType : "json", // define type 
    data: str,
    error : function( er ){ console.log( e );},
    success: function( response ){

    console.log( response );
});