我想根据用户创建自定义菜单栏,在对需求进行分析之后,我发现一些字段为:-id
,name
,slug
,{{1} },parent
,description
,order
。我还制作了一个api,它将使用这些字段将数据保存在数据库中。我为此使用mongodb数据库和golang api。但我坚持的一种情况是:-
情况:-:如果用户添加页面taxonomy
,HOME
,LINKS
。
在Contact-US
页下有两个子页面LINKS
和link1
。相同对于link2
页面,有两个孩子Contact-Us
,Contact1
。然后,我们将如何将数据发送到数据库中以及如何定义哪个菜单页面具有哪些子项。有什么办法吗?在下面,我定义字段的类型:-
Contact2
这些字段是否足以根据用户添加Id int
Name string
Slug string
Parent int
description string
order int
taxonomy string
?
任何建议将不胜感激。
谢谢!