0

我对下面的 CakePHP 结果有点困惑。我包含了两个模型和一个控制器的代码(去掉了不必要的东西)。

问题:一切都正确保存。唯一的问题是 store_users 表的 user_id 字段没有保存。

有什么明显的你能看出我做错了吗?我尝试了 saveAssociated 和 saveAll。

模型/Store.php

<?php
App::uses('AppModel', 'Model');
class Store extends AppModel {
    public $belongsTo = array(
        'User'
    );
    public $hasMany = array(
        'StoreUser'
    );
}

模型/StoreUser.php

<?php
App::uses('AppModel', 'Model');
class StoreUser extends AppModel {
    public $belongsTo = array(
        'User',
        'Store'
    );
}

控制器/StoresController.php

<?php
App::uses('AppController', 'Controller');
class StoresController extends AppController {
    public $uses = array('Store');

    public function create() {
        $this->Store->create();
        $storeData = array(
            'Store' => array(
                'title' => 'New Store',
                'user_id' => $this->Auth->user('id')
             ),
             'StoreUser' => array(
                 'user_id' => $this->Auth->user('id')
              )
        );
        if($this->Store->saveAll($storeData) !== false) {
            // Success
        } else {
            // Error
        }
    }
}

数据库中的结果

stores table:
    id: 1
    title: New Store
    user_id: 1
    ...

store_users table:
    id: 1
    store_id: 1
    user_id: 0
    ...
4

1 回答 1

1

找到了!因为Store hasMany StoreUser而不是Store hasOne StoreUser我必须将user_id提供的数据包装在一个数组中。

控制器/StoresController.php

<?php
App::uses('AppController', 'Controller');
class StoresController extends AppController {
    public $uses = array('Store');

    public function create() {
        $this->Store->create();
        $storeData = array(
            'Store' => array(
                'title' => 'New Store',
                'user_id' => $this->Auth->user('id')
             ),
             'StoreUser' => array(
                 array(
                     'user_id' => $this->Auth->user('id')
                 )
              )
        );
        if($this->Store->saveAll($storeData) !== false) {
            // Success
        } else {
            // Error
        }
    }
}
于 2013-02-06T05:35:14.260 回答