Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以将joint.js的图形对象转成bpmn2 xml格式吗?
如果是,那该怎么做呢?
您可以遍历图形的所有元素和链接并生成 BPMN2 xml 格式(使用以下方法遍历图形:graph.getElements()、graph.getLinks()、graph.getConnectedLinks()),或者您可以从图形 ( ) 生成 JSONgraph.toJSON()并编写一个转换器JSON 到 BPMN2 xml。
graph.getElements()
graph.getLinks()
graph.getConnectedLinks()
graph.toJSON()