如何在cakephp中的模型中创建所属关联
我使用 Cakephp 框架,但我的关联有问题。 如何在cake php中的模型中创建属于关联。 当我在模型中使用 followto 和 hasMany 时。
我可以找到示例模型来查看此示例吗?
I use Cakephp framework, and I have problem with my association.
How create belong to association in models in cake php.
When I use belongto and hasMany in my model.
Can I find sample model to view this example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的belongsTo关联:
简单的hasMany关联:
有关关联的更多具体信息位于CakePHP预订。
Simple belongsTo association:
Simple hasMany association:
More specific information about associations is in the CakePHP Book.
在用户模型中:
在照片模型中:
In User Model :
In Photo Model :