Posted in PHP onMay 14, 2016
本文实例讲述了yii2使用ajax返回json的实现方法。分享给大家供大家参考,具体如下:
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); }
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
yii2使用ajax返回json的实现方法
- Author -
懒人声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@