gpt4 book ai didi

ruby - Savon:XML 标记数组

转载 作者:数据小太阳 更新时间:2023-10-29 08:40:41 25 4
gpt4 key购买 nike

我正在使用 Savon对于 SOAP 请求和 SOAP 请求 XML 的某些地方,我需要生成这段代码:

<content>
<item a="1" b="0"/>
<item a="2" b="0"/>
<item a="3" b="0"/>
</content>

执行此操作的最佳方法是什么?

最佳答案

我找到了解决方案。

soap.body = {  
#... other tags
"content" => {
"item" => ["", "", ""],
:attributes! => {
"item" => {
"a" => ["1", "2", "3"],
"b" => ["0", "0", "0"]
}
}
}
#... other tags
}

关于ruby - Savon:XML 标记数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7001957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com