0

在 cakephp 2.1 上,我使用这种结构在保存时截取数据:

$this->request->data['Setup']['active'] = 1;  

现在,在编辑记录(Dir)之后,我想通过以这种方式获取父 id 来重定向到它的父(project_id):

$ownParentId = $this->request->data['Dir']['project_id'];

但它只是没有在这里传递任何价值:

$this->redirect(array('controller' => 'projects', 'action' => 'edit', $ownParentId));

所以我的重定向失败了。

============= 回复后==============
由于以下原因,project_id 似乎根本没有旅行:

在我的目录编辑表单上,我评论道:

//echo $this->Form->input('project_id');

因为用户不应该更改项目 ID。

我只是尝试取消注释该行,并且表单现在显示一个空的或空的选择控件,该控件不发布任何内容。我期待一个编辑控件,我可以以某种方式隐藏或禁用。

我的目录表上的字段 project_id

CREATE TABLE IF NOT EXISTS `dirs` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `project_id` int(10) NOT NULL,
  ....  

绑定到
我的项目表上的 id 字段:

CREATE TABLE IF NOT EXISTS `projects` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`pr_number` varchar(10) NOT NULL,
`client_id` int(5) NOT NULL,
`exec_id` int(5) NOT NULL,
 ....  

项目模型

var $hasMany = array('Daily', 'Dir');

目录模型

var $belongsTo = array('Project');

也许我只需要一个漂亮的 find() 结构来填充我的编辑表单上的 project_id 控件?-或 -
在保存编辑之前获取 project_id 值?(projectt_id 已经保存,因为是一个编辑。
我已经在http://carlosgarcia.us/support/DirsController.txt发布了完整的 dirs 控制器。

你能帮我吗?非常感谢。

卡洛斯

4

1 回答 1

1

要在编辑或删除子记录后重定向,首先我得到了父 ID(我的控制器上的编辑/删除方法)

     $ownParentId = $this->Dir->find
                    (
                    'first', array
                (
                // recursive 0 so no child tables travel, use 1 to retrieve ALL tables  
                'recursive' => 0,
                'fields' => array('Dir.project_id'),
                'conditions' => array('Dir.id' => $id)
                    )
    );

然后保存后重定向:

$this->redirect(array('controller' => 'projects', 'action' => 'edit', $ownParentId['Dir']['project_id']));

添加孩子后重定向到父记录有点棘手 - 因为我是一个假人 -

1.- 在我看来,添加链接是否发送了一个我称为 parentProject 的参数:

echo $this->Html->link(__('Add'), array('controller' => 'dirs', 'action' => 'add', 'parentProject' => $project['Project']['id']));  

2.- 在我的子控制器中,将此参数设置为数组(添加方法):

$this->set('parentProject', $this->request->params['named']['parentProject']);

3.- 保存之前,为我的子记录设置字段值:

$this->request->data['Dir']['project_id'] = $this->request->params['named']['parentProject'];  

4.-保存后使用相同的值重定向:

$this->redirect(array('controller' => 'projects', 'action' => 'edit', $this->request->data['Dir']['project_id']));  

此外,这种方式允许我在添加/编辑子项时从父模型中获取我需要的所有数据:

   $ProjectData = $this->Dir->Project->find
                    (
                    'first', array
                (
                // recursive 0 so no child tables travel, use 1 to retrieve ALL tables  
                'recursive' => 0,
                'fields' => array('Project.name', 'Project.pr_e_start'),
                'conditions' => array('Project.id' => $this->request->params['named']['parentProject'])
                    )
    );

    $this->set(compact('ProjectData'));

很高兴它奏效了,并想分享给像我这样苦苦挣扎的初学者。

卡洛斯。

于 2012-06-14T04:26:14.763 回答