如何在 bpmn-js 中指定 XML 元素名称
How to specify XML element names in bpmn-js
如果我像这样用 bpmn-js 定义一个 moddle 文件
{
name: "thisArgument",
superClass: [
"Element"
],
properties: []
},
{
name: "myData",
superClass: [
"Element"
],
properties: [
{
name: "argument",
type: "thisArgument"
}
]
},
然后生成的 XML(当我调用 saveXML 时)将有一个名为 thisArgument
的元素,尽管名称是“argument”。首先,这是一个错误吗?如果不是,我如何控制输出以使 XML 包含 argument
而不是 thisArgument
?我搜索了文档和示例,但找不到如何执行此操作。
我发现的唯一解决方法是将其设为 type: "argument"
,然后使用 thisArgument
的超类定义 argument
,并且没有额外的属性(本质上是创建别名)。但是,这仅在 argument
的所有实例都相同时才有效。例如。如果 XML 需要
<A><argument/></A>
<B><argument/></B>
如果 A 中的参数与 B 中的参数形状不同,那么就会发生冲突,因为我无法定义 argument
两次。
我可以有点回答我自己的问题。我找到了这个序列化选项并进行了试验,它主要做了我想要的,但有时它会添加一个不需要的 xsi:type="originalType"
属性,有时它不会。也许这取决于 isBody
但我不确定。如果有人知道详细的工作原理,请回复。
properties: [
{
name: "argument",
type: "thisArgument",
xml: {
serialize: "xsi:type"
},
}
]
我发现与文档最接近的是 https://forum.bpmn.io/t/bpmn-json-documentation/1304,它将其描述为“影响 XML 类型序列化的附加元数据”,所以如果有人提供任何额外的详细信息,我将不胜感激可以供货
更新:
文档没有提到这一点,但事实证明 serialize: "property"
正是我所需要的。这与 serialize: "xsi:type"
相同,但不添加 xsi:type
属性。
xml: {
serialize: "property"
},
我通过搜索相关包之一的代码找到了这个,moddle-xml。
在 write.js 中,有代码查找 xsi:type
或 property
条目:
// allow serialization via type
// rather than element name
var asType = serializeAsType(p),
asProperty = serializeAsProperty(p);
在同一个文件中,我发现了一些代码似乎可以解释为什么 xsi:type
并不总是出现:
// only serialize xsi:type if necessary
if (descriptor.name === this.propertyDescriptor.type) {
return attributes;
}
如果我像这样用 bpmn-js 定义一个 moddle 文件
{
name: "thisArgument",
superClass: [
"Element"
],
properties: []
},
{
name: "myData",
superClass: [
"Element"
],
properties: [
{
name: "argument",
type: "thisArgument"
}
]
},
然后生成的 XML(当我调用 saveXML 时)将有一个名为 thisArgument
的元素,尽管名称是“argument”。首先,这是一个错误吗?如果不是,我如何控制输出以使 XML 包含 argument
而不是 thisArgument
?我搜索了文档和示例,但找不到如何执行此操作。
我发现的唯一解决方法是将其设为 type: "argument"
,然后使用 thisArgument
的超类定义 argument
,并且没有额外的属性(本质上是创建别名)。但是,这仅在 argument
的所有实例都相同时才有效。例如。如果 XML 需要
<A><argument/></A>
<B><argument/></B>
如果 A 中的参数与 B 中的参数形状不同,那么就会发生冲突,因为我无法定义 argument
两次。
我可以有点回答我自己的问题。我找到了这个序列化选项并进行了试验,它主要做了我想要的,但有时它会添加一个不需要的 xsi:type="originalType"
属性,有时它不会。也许这取决于 isBody
但我不确定。如果有人知道详细的工作原理,请回复。
properties: [
{
name: "argument",
type: "thisArgument",
xml: {
serialize: "xsi:type"
},
}
]
我发现与文档最接近的是 https://forum.bpmn.io/t/bpmn-json-documentation/1304,它将其描述为“影响 XML 类型序列化的附加元数据”,所以如果有人提供任何额外的详细信息,我将不胜感激可以供货
更新:
文档没有提到这一点,但事实证明 serialize: "property"
正是我所需要的。这与 serialize: "xsi:type"
相同,但不添加 xsi:type
属性。
xml: {
serialize: "property"
},
我通过搜索相关包之一的代码找到了这个,moddle-xml。
在 write.js 中,有代码查找 xsi:type
或 property
条目:
// allow serialization via type
// rather than element name
var asType = serializeAsType(p),
asProperty = serializeAsProperty(p);
在同一个文件中,我发现了一些代码似乎可以解释为什么 xsi:type
并不总是出现:
// only serialize xsi:type if necessary
if (descriptor.name === this.propertyDescriptor.type) {
return attributes;
}