我正在 BaseX 编辑器中逐步构建 XQuery(我的第一次 XQuery 尝试)。在最后一步,结果格式发生了变化,我不明白为什么。我真的很难使用 XQuery 语法(订购的书)。我原以为在最后的所有步骤中都会返回一个“漂亮的打印”视图,但视图发生了变化。
这个 XQuery 脚本:
for $pc in /fhx/batch_equipment_phase_class
let $pc_name := $pc/@name
return
for $fb in $pc/phase_class_algorithm/function_block[@name != 'FAIL_MONITOR']
let $fb_name := $fb/@name
return
for $step in /fhx/function_block_definition[@name = $fb/@definition]/sfc_algorithm/step
let $step_name := $step/@name
return
for $action in $step/action
let $action_name := $action/@name
return
(<phase_class>{data($pc_name)}</phase_class>,
<fb>{data($fb_name)}</fb>,
<step>{data($step_name)}</step>,
<action>{data($step_name)}</action>,
$action/*)
给出这样的输出:
<phase_class>4_AC25_CIPSU</phase_class>
<fb>RUN_LOGIC</fb>
<step>CLEAR_INT_BYP</step>
<action>CLEAR_INT_BYP</action>
<description>Step Message.</description>
<action_type>ASSIGN</action_type>
<qualifier>P</qualifier>
<expression>'^/STEP_MSG.CV' := "Clearing Interlock Bypasses";</expression>
<delay_time>0</delay_time>
但是修改以添加
<row>
元素包装器:
for $pc in /fhx/batch_equipment_phase_class
let $pc_name := $pc/@name
return
for $fb in $pc/phase_class_algorithm/function_block[@name != 'FAIL_MONITOR']
let $fb_name := $fb/@name
return
for $step in /fhx/function_block_definition[@name = $fb/@definition]/sfc_algorithm/step
let $step_name := $step/@name
return
for $action in $step/action
let $action_name := $action/@name
return
<row>
<phase_class>{data($pc_name)}</phase_class>
<fb>{data($fb_name)}</fb>
<step>{data($step_name)}</step>
<action>{data($step_name)}</action>
{$action/*}
</row>
变成这样:
<row><phase_class>4_AC25_CIPSU</phase_class><fb>RUN_LOGIC</fb><step>CLEAR_INT_BYP</step><action>CLEAR_INT_BYP</action><description>Step Message.</description><action_type>ASSIGN</action_type><qualifier>P</qualifier><expression>'^/STEP_MSG.CV' := "Clearing Interlock Bypasses";</expression><delay_time>0</delay_time></row>
我预料到了这个:
<row>
<phase_class>4_AC25_CIPSU</phase_class>
<fb>RUN_LOGIC</fb>
<step>CLEAR_INT_BYP</step>
<action>CLEAR_INT_BYP</action>
<description>Step Message.</description>
<action_type>ASSIGN</action_type>
<qualifier>P</qualifier>
<expression>'^/STEP_MSG.CV' := "Clearing Interlock Bypasses";</expression>
<delay_time>0</delay_time>
</row>
请帮助我理解为什么格式会改变以及我应该使用什么语法来获得我期望的输出格式。
默认情况下,XML 的后代节点不缩进。您可以通过在查询前添加以下输出声明来更改此设置:
declare option output:indent 'yes';