我想知道在php中处理ajax调用后,传回多个数据集(字符串)的正确方法是什么。
我知道echo用于发回一串数据,但如果我想发送多个字符串怎么办?以及如何处理这些字符串infunction:function(html){}?
答案 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>