AJAX PHP响应解释

时间:2015-06-28 16:04:44

标签: php ajax

我注意到jQuery可以通过多种方式调用数据来解释数据。我看了一下json,但也许这对我想做的事情来说太复杂了。

我的php脚本ALWAYS返回1个整数字符串SOMETIMES后跟1个整数int或2个整数int。

所以它可以返回

xxyxyz

其中xyz是真正的单个数字。

如何解码此响应并将jQuery var分配给回复。我在想类似的东西。

var code = firstNumberOf response
var value = secondNumberOf and thirdNumberOff response

但如果只有第二个数字而不是第三个数字,var value也可以只是第二个数字。

在此先感谢,我一直在研究这个问题。

1 个答案:

答案 0 :(得分:1)

如何将响应字符串视为数组?

$.get( "page.php", function( data ) {
    var response = data;
    response.length; //number of digits
    response[0]; //first digit
    response[1]; //second digit
    var value = response[1] + (response.length>2?response[2]:0);
});