Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我按照这个例子创建了一个树结构。节点添加成功,但父字段为空,我无法使用 add.ctp 视图将子节点添加到任何节点!如何使用表中已存在的类别名称填充此字段?它不应该自动加载它们吗?正如您在图片中看到的,父字段为空!
感谢您提前提供任何帮助。
如果表单中的字段是 parent_id,则视图中应该有 $parents 可用。因此,在类别添加操作中,您应该执行以下操作:
$parents = $this->Category->Parent->find('list'); $this->set(compact('parents'));
请注意,$this->Category->Parent只有在 Category 模型中设置了适当的关系时才会起作用...
$this->Category->Parent