CakePHP 中的子类别和类别
在 CakePHP 中创建类别和子类别的正确约定是什么?
你制作两个数据库表吗?两个型号?
What is the correct convention for making categories and subcategories in CakePHP?
Do you make two database table? Two models?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您从长远来看想要构建什么。如果您想设置一张表,请查看树行为可能是值得的。
但是,如果您的需求分析表明类别和子类别有很大差异,那么恕我直言,您最好使用两个表(和两个模型)设置。
it depends on what you want to build in the longer run. If you want to have a one table setup, then checking out the tree behavior could be worthy.
But if your requirements analysis turns out that categories and subcategories differ substantially, you are better off with a two table (and two models) setup imho.