In cakephp 3 I got error Unexpected field in POST data

倾然丶 夕夏残阳落幕 提交于 2019-12-11 02:22:33

问题


In cakephp 3 I got error Unexpected field in POST data. Actually that field is not in my table, but I want to use in controller.


回答1:


The Security Component in CakePHP is not forgiving. If you want to allow a field thru that should not go thru the Security Component hashing process, you need to use the unlockedField method that comes with the FormHelper class as such:

$this->Form->unlockField('field');

If this does not work, you will need to provide us with the pertinent code




回答2:


I was getting the similar error in cakephp 3.4 I was using the simple html form and input fields. I was passing the input fields data in array. like below:-

<form action="" method="post">    
<input name="data[1][category_1]" id="category_1">
</form>

Then i do some R&D and found that we need to use the cakephp form helper to create the form and its fields like below :-

In case of pass form data in array

<?= $this->Form->create($user, ['url' => ['controller' => 'Users', 'action' => 'saveOrder']]); ?>
    <?= $this->Form->input("Data.1.category_1"); ?>
<?= $this->Form->end() ?>

In case of simple input fields you can do the code like below

<?= $this->Form->create($user, ['url' => ['controller' => 'Users', 'action' => 'saveOrder']]); ?>
    <?= $this->Form->input("category"); ?>
<?= $this->Form->end() ?>

This work form me and resolve the error Unexpected field in POST data in cakephp 3.4



来源:https://stackoverflow.com/questions/45185112/in-cakephp-3-i-got-error-unexpected-field-in-post-data

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!