mySQL 中菜单的表结构

发布于 2024-08-13 22:19:44 字数 198 浏览 4 评论 0原文

我需要有关表结构的建议。

我需要动态创建菜单。

会有超过3个菜单。

一些菜单将具有多级结构。

构建菜单表的最佳方式是什么?

  1. 所有菜单都在一张桌子上
  2. 每张桌子应该有一张桌子
  3. 还有其他吗?

请给我您动态生成菜单的经验或常见做法。

I need advices for a table structure.

I need to create menus dynamically.

There will be more than 3 menus.

Some of menus will have multi-level structures.

What is the best way to strucure the menu tables?

  1. All the menus are in one table
  2. Each table should have one table
  3. Any other??

Please give me your experience or common practices for dynamically generated menus please.

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

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

发布评论

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

评论(4

鹊巢 2024-08-20 22:19:44

假设您的菜单树不是很大,所谓的邻接列表将是

id   
parent_id
title
other fields

顶级菜单的最简单选项parent_id = 0

请参阅管理 MySQL 中的分层数据以供进一步讨论和其他选项

assuming your menu tree is not very large, the so-called adjacency list would be the simplest option

id   
parent_id
title
other fields

for top level menus parent_id = 0

see Managing Hierarchical Data in MySQL for further discussion and other options

坦然微笑 2024-08-20 22:19:44

您可以使用如下结构:

表名:菜单
id - 主键
menu_id - 对父菜单项的引用
title - 菜单的标题
(您需要的任何其他数据)

这样您就可以拥有无​​限的级别......
当然这不是唯一的方法......

You could use a structure like this:

table name: menu
id - primary key
menu_id - reference to the parent menu item
title - title of the menu
(any other data you need)

this way you can have unlimited levels ...
off course this is not the only way ...

执着的年纪 2024-08-20 22:19:44

对于大多数结构来说,使用parent_id应该足够了,但是如果您在性能方面遇到困难(关于深度递归),您还应该研究修改后的先序树遍历

Using parent_id should be enough for most structures, however if you get stuck on performance (with regards to deep recursion), you should also research Modified Preorder Tree Traversal.

提笔落墨 2024-08-20 22:19:44

http://www.codeproject.com/Tips /354696/Dynamically-populate-menu-items-from-the-databas

这会很有帮助,
在 ASP.NET 中从数据库动态填充菜单项

http://www.codeproject.com/Tips/354696/Dynamically-populating-menu-items-from-the-databas

this will be helpful,
Dynamically populating menu items from the database in ASP.NET

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文