現在 ajax の使い方を学ぼうとしていますが、残念ながらsuccess
.
$('.engineering-services').live('click', function() {
$.ajax({
url: 'index.php?route=information/information/homepage_info',
type: 'post',
data: {info_description : 'test'},
dataType: 'json',
success: function(json){
alert('pass');
},
error: function(json) {
alert('fail');
}
});
});
これがphp関数です...
public function homepage_info() {
$json = array();
if (isset($this->request->post['info_description'])) {
echo $this->request->post['info_description'];
echo '<br /> test2';
}
$this->response->setOutput(json_encode($json));
}
ただし、これは常に合格アラートではなく不合格アラートになります。ここで明らかな何かが欠けていますか?
編集:コンソールで正しい応答をしているように、機能を見つけてOKです。
すなわち
テスト
テスト2
ありがとうございました