发布于 2022-01-28 10:29:36
Camunda建模器基本上是围绕着https://bpmn.io/的电子。您可以使用bpmn在自己的页面中包含建模功能。它非常简单,如bpmn.io网站所示:
<script>
var viewer = new BpmnJS({ container: 'body' });
viewer.importXML(bpmnXML, function(err) {
if (err) {
console.log('error rendering', err);
} else {
console.log('we are good!');
}
});
</script>
https://stackoverflow.com/questions/70787945
复制相似问题