PHP完全自学手册(珍藏版) 中文pdf扫描版下载
- public function actionAjax()
- {
- if(isset(Yii::$app->request->post('test'))){
- $test = "Ajax Worked!";
- // do your query stuff here
- }else{
- $test = "Ajax failed";
- // do your query stuff here
- }
- // return Json
- return \yii\helpers\Json::encode($test);
- }
转载请注明:谷谷点程序 » yii2 ajax返回json的方法