cakephp new field not saving

前端 未结 10 620
渐次进展
渐次进展 2021-02-02 14:43

How to you extend a cakePHP project so it can use a new field in the database?

I just given a CakePHP Project that I am trying to extend the model to include a new field

10条回答
  •  攒了一身酷
    2021-02-02 15:12

    In cakephp 3 you should also check your entity file for that model, and make sure that the field is under the $_accesible property.

    Example:

    protected $_accessible = [
        'name' => true,
        'topic' => true,
        'new_field' => true
    ];
    

提交回复
热议问题