gpt4 book ai didi

ruby - 使用 Nokogiri 如何将 Node 对象内容插入到 XML::Builder 结构中?

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:47 25 4
gpt4 key购买 nike

如何使用 Nokogiri 将 Node 对象内容插入到 XML::Builder 结构中?

#source nodes
mynodes = [...array of Nodes...]

#where I want to dump source nodes
target_for_nodes = somebuilder.doc.xpath('//mydoc/mynodecollection').first

#drop the nodes into place
Nokogiri::XML::Builder.with(target_for_nodes) do |xml|
mynodes.each do |node|
xml.text node.to_xml #gives escaped text- how to drop real XML here from the Node?
end
end

它给出了转义文本,但我不清楚如何从 Node 对象中删除真正的 XML?

最佳答案

嗯。看来我只需要使用

xml << node.to_xml 

而不是

xml.text node.to_xml

干杯!

关于ruby - 使用 Nokogiri 如何将 Node 对象内容插入到 XML::Builder 结构中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10336343/

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