Rails 数组 to_xml
我有一个用户对象数组,我想将其作为 xml 返回。如何使用 to_xml 在根元素上包含属性?例如,
<users total="10">
<user>
..
</user>
</users>
我知道您可以使用带有 to_xml 方法的块将自定义元素和属性添加到 xml,但我不确定如何添加到根元素。也许除了使用 to_xml 之外还有另一种方法
I have an array of user objects which I want to return as xml. How can I use to_xml to include attributes on the root element? For example
<users total="10">
<user>
..
</user>
</users>
I know you can add custom elements and attributes to the xml using a block with the to_xml method, but I'm not sure how to add to the root element. Maybe there's another way other than using to_xml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用过 xml 生成器。以下代码片段涵盖了一些棘手的 xml 构建。
在你的控制器中,
I have used xml builder. Following code snippet covers some tricky xml building.
In you controller,