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.
XML内でデータをJSONオブジェクトに変換したいと考えていますQBO3。
XML
JSON
QBO3
これに利用できるネイティブメソッドはありますか?
コンソールで次を実行してみてください。
var xml = "<head><node1>node1</node1><node2>node2</node2></head>"
var xml = "<head><node1>node1</node1><node2>node2</node2></head>
var xmlToJson = new XMLtoJSON;
xmlToJson.fromStr(xml);
メソッドに加えてfromStr[ing]、XMLtoJSON オブジェクトにもfromFile使用可能なメソッドがあることに注意してください。
fromStr[ing]
fromFile