我想使用我在Ajax响应中收到的参数,但是我将它作为一个简单的字符串接收。
Ajax:
$.ajax({
type: 'POST',
url: url,
data: str
}).done(function(res){
// res is a simple string
// => ResponseCode=0&Description=OK
});
假设我需要使用Description参数的值(OK)。
答案 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 );
});