我的代码真的很简单,而且我多次使用 ajax 都没有问题。但现在我有这个:
var dataForm=jQuery('form').serialize();
jQuery.post(
'/home/index/page/1',
dataForm,
process_Results_Search
);
function process_Results_Search(response)
{
console.log('Im processing data');
console.log(response);
}
在我的控制器中,我只做了一个简单的回声:
echo "im here";
但我的回应是这样的(最近页面的内容)。我正在使用 ZEND:
<!DOCTYPE HTML>
<html>
<head>
....
im here<!----------in the end of the response!!!---------------->