BPMN.js 节点如何删除 loopCharacteristics属性
时间: 2023-11-27 21:50:04 浏览: 184
基于bpmn.js的流程图
要删除 BPMN.js 中节点的 loopCharacteristics 属性,你可以使用以下代码:
```javascript
// 获取节点
var shape = elementRegistry.get('节点ID');
// 删除 loopCharacteristics 属性
modeling.updateProperties(shape, {
loopCharacteristics: undefined
});
```
其中,`elementRegistry.get()` 方法用于获取指定节点的元素,`modeling.updateProperties()` 方法用于更新节点属性。在这个例子中,我们将 loopCharacteristics 属性设置为 `undefined`,这将导致该属性被删除。
阅读全文