Why get Unable to verify your data submission erro

2019-01-17 14:45发布

enter image description here

Error:

Unable to verify your data submission error

Create one public function in Yii2. But, submit data not accept in this method, see following error images. Why is this happen?

标签: yii2
9条回答
我只想做你的唯一
2楼-- · 2019-01-17 15:26

Add this in your controller:

 public $enableCsrfValidation = false;
查看更多
Rolldiameter
3楼-- · 2019-01-17 15:32

Check whether there is hidden input in your form with CSRF token. It should look like

<input type="hidden" name="_csrf" value="ZEZ6Y0xrY3ARGS42fTwhMQgkDgF6BCEGEx4SMXQMBR4CPy0iPCIwNQ==">
查看更多
放我归山
4楼-- · 2019-01-17 15:37

Add this in the head section of your layout: <?= Html::csrfMetaTags() ?>

查看更多
登录 后发表回答