现在,我有了类似this
的Category模式并且希望使用react-sortable-tree之类的东西来允许用户创建/移动/更新类别树。
我的类别架构:
{
"_id": ObjectId()
"name": "Sub-sub cat",
"parent": (ObjectId of parent),
"ancestors": [(ObjectId of all ancestors)]
}
react-sortable-tree所需的架构:
{
"title": "TITLE",
"children": [{"title": "CHILDREN 1"}, {"title": "CHILDREN 2"}]
}
这是我建议的工作流程:
这部分是否有更好的流程?谢谢