如何从ajax调用返回多个值/数组?

时间:2013-09-18 17:00:46

标签: javascript php jquery ajax

我想知道在php中处理ajax调用后,传回多个数据集(字符串)的正确方法是什么。

我知道echo用于发回一串数据,但如果我想发送多个字符串怎么办?以及如何处理这些字符串infunction:function(html){}?

1 个答案:

答案 0 :(得分:3)

以JSON格式对结果数组进行编码并返回响应。

<?php
$arr = array ('response'=>'error','comment'=>'test comment here');
echo json_encode($arr);
?>

//the script above returns this:
{"response":"error","comment":"test comment here"}

<script type="text/javascript">
$.ajax({
    type: "POST",
    url: "process.php",
    data: dataString,
    dataType: "json",
    success: function (data) {
        if (data.response == 'captcha') {
            alert('captcha');
        } else if (data.response == 'success') {
            alert('success');
        } else {
            alert('sorry there was an error');
        }
    }

}); 
</script>