为 CakePHP 视图指定的模型

发布于 2024-11-10 11:08:56 字数 295 浏览 1 评论 0原文

大家好,这里有一个小问题。在 CakePHP 中,我有一个使用多个模型的控制器。在视图中创建表单时,当我指定 $uses = array('Model') 时,视图将始终根据第一个模型来命名我的 UI 元素,例如,如果我的 User 模型是我的数组中的第一个,然后我的 UI 元素将接收 id="User(fieldname)"name="data['User'][fieldname]"

任何人都知道如何我切换视图正在使用的模型,以便我可以根据我正在操作的数据正确命名它们?

Hey all, have a slight problem here. In CakePHP I have a controller that uses several models. When creating a form in a view, the view will always name my UI elements based on what the first model is when I specify $uses = array('Model') so for instance if my User model is the first in my array then my UI elements will receive id="User(fieldname)" and name="data['User'][fieldname]"

Anybody know how I switch the models my views are using so I can name them properly according to the data I am manipulating?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

并安 2024-11-17 11:08:56

创建表单时使用全点表示法:

echo $this->Form->create('ModelName');
echo $this->Form->text('ModelName.field_name');
echo $this->Form->input('ModelName.field_name');

When creating a form use the full dot notation:

echo $this->Form->create('ModelName');
echo $this->Form->text('ModelName.field_name');
echo $this->Form->input('ModelName.field_name');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文