我是一名初级测试人员,并且我使用邮递员将xml帖子链接在一起。 我已经在使用全局变量和环境变量方面取得了成功,但是在提取孩子及其子孩子然后将整个块放入下一篇文章时遇到了问题。 例如,我收到了以下
<?xml version="1.0" encoding="UTF-8"?>
<Example data="example"/>
<Demonstration filler="231" moreExample="true"/>
<Target>
<TargetSegment lettuce="true" onion="99" pickles="absolutely"/>
<TargetSubSegment potatoe="true"/>
</TargetSegment>
<TargetSegment chives="true" cabbage="99" celery="absolutely"/>
<TargetSubSegment turnip="true"/>
</TargetSegment>
</Target>
<Example2 data="example"/>
<Demonstration2 filler="231" moreExample="true"/>
我如何才能将所有东西放在<Target>
中,并将其自动放入下一个帖子正文中?
如果您需要更多信息,请让我知道,因为这是我第一次发布,我仍在学习邮递员,基本上是所有东西。
我尝试做JSON.stringify(variableName)(在将xml转换为Json之后),但我对此没有任何运气。