最新消息: 新版网站上线了!!!

yii2 ajax返回json的方法

  1. public function actionAjax() 
  2.     if(isset(Yii::$app->request->post('test'))){ 
  3.         $test = "Ajax Worked!"
  4.         // do your query stuff here 
  5.     }else
  6.         $test = "Ajax failed"
  7.         // do your query stuff here 
  8.     } 
  9.  
  10.     // return Json     
  11.     return \yii\helpers\Json::encode($test); 

 

转载请注明:谷谷点程序 » yii2 ajax返回json的方法