[ 'class' => VerbFilter::className(), 'actions' => [ 'api' => ['get', 'post'], 'index' => ['get', 'post'], ], ], ]; } public function actionApi() { return 'hello world'; } /** * Displays contact json交互. * * @return mixed */ public function actionJson() { $post=Yii::$app->request->get(); var_dump($post); } }