本文介绍了如何从DiagramBuilder.toJSON()返回的JSON创建AlloyUI DiagramBuilder?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
返回该图的JSON表示形式。如何使用此JSON对象使用相同的图表创建新的 DiagramBuilder
?
推荐答案
您可以将 jsonData.nodes
传递给属性:
You can pass the jsonData.nodes
to the fields
attribute of the DiagramBuilder
:
var diagramBuilderJSON = diagramBuilder.toJSON();
new A.DiagramBuilder({ fields : diagramBuilderJSON.nodes }).render();
这篇关于如何从DiagramBuilder.toJSON()返回的JSON创建AlloyUI DiagramBuilder?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!