Savon:XML 标签数组
我正在使用 Savon 进行 SOAP 请求,并且在 SOAP 请求 XML 的某些位置,我需要生成这个一段代码:
<content>
<item a="1" b="0"/>
<item a="2" b="0"/>
<item a="3" b="0"/>
</content>
执行此操作的最佳方法是什么?
I'm using Savon for SOAP requests and in some place of the SOAP request XML, I need to generate this piece of code:
<content>
<item a="1" b="0"/>
<item a="2" b="0"/>
<item a="3" b="0"/>
</content>
What's the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经找到了解决方案。
I have found the solution.
Savon v0.9.7 改进了对 Builder 的支持,我建议使用它而不是尝试通过哈希强制属性,因为它更具可读性:
Savon v0.9.7 comes with improved support for Builder and I would suggest to use it instead of trying to force attributes via Hashes, because it's way more readable:
你可以这样做:
You could do something like: