CakePHP - 用于管理 HABTM 模型的视图和控制器?
是否可以在某个地方获得 GUI(视图和控制器)的默认设置,以管理两个模型之间的 HABTM 关系?
Is there somewhere that I can get a default set up for a GUI (views and controllers) for managing an HABTM relationship between two models?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题并不具体,因此这是一个通用答案:
http:// book.cakephp.org/view/1522/Code-Generation-with-Bake
检查此 URL,它将向您展示如何使用烘焙 shell 为您的应用程序构建基本代码,该代码已经允许您执行 CRUD 操作并浏览您的应用程序记录。
如果您的数据库模式遵循约定,CakePHP 将检测到这一点并生成正确的表单和模型关联,同样适用于 HABTM。
Your question is not really specific so here is a generic answer:
http://book.cakephp.org/view/1522/Code-Generation-with-Bake
Check this URL it will show you how to build basic code using the bake shell for your app that already will allow you CRUD actions and browse your records.
If your database schema follows the conventions CakePHP will detect that and generate the correct forms and model associations, also for HABTM.