amic 8 달 전
부모
커밋
451a39ff26
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      controllers/InquirerController.php

+ 8 - 0
controllers/InquirerController.php

@@ -11,6 +11,14 @@ class InquirerController extends \yii\web\Controller
         return $this->render('index');
     }
 
+    public function beforeAction($action)
+	{
+		if (in_array($action->id, ['ajax'])) {
+			$this->enableCsrfValidation = false;
+		}
+		return parent::beforeAction($action);
+	}
+
     public function actionView($id){
 		$model = Inquirer::findOne(['id'=>$id]);