我需要使用ox生成 XML,但没有从文档中得到太多帮助。我需要像这样生成 XML:
<Jobpostings>
<Postings>
<Posting>
<JobTitle><cdata>Programmer Analyst 3-IT</cdata></JobTitle>
<Location><cdata>Romania,Bucharest...</cdata></Location>
<CountryCode><cdata>US</cdata> </CountryCode>
<JobDescription><cdata>class technology to develop.</cdata></JobDescription>
</Posting>
</Postings>
</jobpostings>
我将标签内的数据作为变量中的字符串,如下所示:
jobtitle = "Programmer Analyst 3-IT" and so on...
我目前正在使用 Nokogiri 生成 XML,但我需要处理大数据,并且为了性能,我将转向 Ox。
关于如何做到这一点的任何想法?