本当に私のコードは非常に単純で、問題なく 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!!!---------------->