在 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 控制器。
你能帮我吗?非常感谢。
卡洛斯