有人大师xquery吗?
我有一个 XQuery FLWOR 表达式:
<dg:segment xsi:type="dg:SegmentEauType">
{
for $attr_name in fme:get-list-attribute("_att{}._attr_name")
return <attribut name="{$attr_name}">value</attribut>
}
</dg:segment>
产生
<dg:segment xsi:type="dg:SegmentEauType">
<attribut name="DIAMETREM_R">value</attribut>
<attribut name="PROVENANCEDONNEE_R">value</attribut>
<!-- etc... -->
</dg:segment>
我怎样才能得到那个 XML 节点?
<dg:segment xsi:type="dg:SegmentEauType">
<DIAMETREM_R>value<DIAMETREM_R>
<PROVENANCEDONNEE_R>value<PROVENANCEDONNEE_R>
<!-- etc... -->
</dg:segment>
我试过了,但我得到了一个错误。
for $attr_name in fme:get-list-attribute("_att{}._attr_name")
return <{$attr_name}>value</{$attr_name}>
无关 fme:get-list-attribute 函数...
许多Tx!