如何解决“ _existsIn'=>'此值不存在'” Cakephp

时间:2019-10-23 04:55:21

标签: cakephp orm cakephp-3.x

仅当我删除company_id时,函数保存才起作用,但是当我将company_id带回来时,调试会显示“ _existsIn'=>'此值不存在'”

public function createForm(){
        $user = $this->Auth->user();
        $company_id = $user['company_id'];
        $form_title = $_POST['form_title'];
        $total_score = $_POST['total_score'];

        $form = $this->FieldCoachingForms->newEntity();
        if ($this->request->is('post')) {

            $form->title = $form_title;
            $form->deleted = 0;
            $form->company_id = $company_id;

            if($this->FieldCoachingForms->save($form)){
                $this->Flash->success(__('Field Coaching Form has been saved!'));
            }else{
                $this->Flash->error(__('Something Went Wrong'));
                debug($form->errors());
            }

        }

        exit();
    }

1 个答案:

答案 0 :(得分:0)

您可能在existsIn的{​​{1}}中有一条buildRules规则,并且ID为FieldCoachingModel的公司不存在。