CakePHP 行为中的控制器名称
我创建了关系 Post hasMany Photos,照片充当 ImageBehavior。
如何放入$data['Photo']['model'] = 'Post'
?自动化?
I created relation Post hasMany Photos, Photos actsAs ImageBehavior.
How put to $data['Photo']['model'] = 'Post'
? Automated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您在问什么,但是当您有表单时,您可以简单地将您想要的任何值添加到
$this->data['Photo']['model']
中带有隐藏字段。Update
您可以在提交表单后设置此值,因此即使有人替换隐藏字段值您也可以检查它。
I'm not sure what you are asking about but when you have a form, you can simply add to your
$this->data['Photo']['model']
any value you want with hidden fields.Update
You can set this value after the form was submitted, so even if someone will replace the hidden field value you can just check it.