Ruby XML Builder,如何创建这个命名空间?
我正在使用 Ruby 的 XML Builder 并尝试找到正确的语法来重新创建以下 RSS 2.0 声明:
<rss version="2.0"
xmlns:g="http://base.google.com/ns/1.0">
What's theproperty way of go about this with XML Builder 将上述块放在一起?
I'm using Ruby's XML Builder and trying to find the proper syntax to recreate the following RSS 2.0 declaration:
<rss version="2.0"
xmlns:g="http://base.google.com/ns/1.0">
What's the appropriate way of going about this with XML Builder to put together the above block?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个构建器脚本:
这将产生:
Try this builder script:
This will yield: