是否有用于web应用程序的UML编辑器库?

2024-06-08 16:19:30 发布

您现在位置:Python中文网/ 问答频道 /正文

只想知道是否有任何库或框架支持web应用程序的UML编辑器接口。 我知道有很多在线工具可用于创建UML图。但是需要知道是否有任何选项可用于将UML creator接口集成到web应用程序中


Tags: 工具框架web应用程序选项编辑器umlcreator
1条回答
网友
1楼 · 发布于 2024-06-08 16:19:30

我非常喜欢美人鱼(http://mermaid-js.github.io/mermaid/

我在自己的博客上用它来绘制图表

下面是流程图(https://www.guilhermevrs.me/posts/time-management-for-leaders/)的示例

代码如下:

graph TD;
begin(Start)
id1{Is it an action for you?};
id2[Store as reference]
id3[Delegate]
id4[Delete]
id5{Less than 2 minutes?}
id6[Do it!]
id7["Categorize it #40;e.g. work, personal, etc#41;"]
id8["Prioritized it #40;e.g. priority 1, priority 2, etc#41;"]
id9["Size it #40;e.g. XS, S, M, etc#41;"]
id10{Due date?}
id11[Schedule it]
id12{Should follow-up?}
id13[Schedule reminder]
id14(Done)
begin >id1
id1  No, but may be useful  >id2
id1  No, it's not up to me  >id3
id1  No, it's irrelevant now  >id4
id1  Yes  >id5
id5  Yes  >id6
id5  No  >id10
id10  No  >id7
id10  Yes  >id11
id11 >id7
id7 >id8
id8 >id9
id3 >id12
id12  No  > id14
id12  Yes  >id13
id13 & id9 & id6 & id4 & id2 >id14

相关问题 更多 >