Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有如下遗留代码:
myxml = some xml data parser = Nokogiri::XML::SAX::Parser.new(somedoc) parser.parse_memory myxml
是什么parse_memory?它有什么作用?
parse_memory
该parse_memory方法解析存储在内存中的 XML 文档,而不是存储在文件系统上或IO实例后面的文档。
IO