私はjQueryの初心者です。サーバーからJsonを取得しようとしています:私のコードがあります:
$.ajax({
url: "/addemail",
type:'POST',
data: $("form#form12").serialize(),
success: function(my_json) {
// I suppose that Json returned by the addmail() is in the var: my_json ?
//inject my_json inside some <td >
}
});
私のphp関数(私はZendを使用しています):
public function addemailAction(){
$data=array(array('Email'=>'abc@gmail.com',
'Name'=>'Abc Def')
);
$this->_helper->json->sendJson($data);
}