試圖在phpfox中做出一個ajax調用並獲得響應。phpfox,從ajax調用中獲得值作爲響應
的JS:
$.ajaxCall('module.check_whether_first_time',
'u_id='+u_id+'&my_user_id='+my_user_id).done(function(data) {
alert(" data = " + data )
});
其AJAX從ajax.class.php中調用該函數:
public function check_whether_first_time(){
$u_id = $this->get('u_id');
$my_user_id=$this->get('my_user_id');
// processing with data goes here
$counter=1;
echo $counter;
}// end of function check_whether_first_time
我想在data
變量$counter
值。該代碼不起作用,但FireBug顯示ajax請求沒有返回結果作爲響應。什麼方式?
與嘗試: $這個 - >調用('警報( 「東西」);'); 只是爲了檢查您的代碼是否到達該行。 確保您的網站也顯示錯誤 – Purefan
讓我運行測試 –