JSON.stringifyのxml版みたいのが必要になったので調べた。
以下の方法でxmlを文字列として出力できる。
(xmlの読み込みにd3をつかってます)
d3.xml('sample.xml', function(xml){
console.log( new XMLSerializer().serializeToString(xml) );
});
Go to list of users who liked
More than 5 years have passed since last update.
JSON.stringifyのxml版みたいのが必要になったので調べた。
以下の方法でxmlを文字列として出力できる。
(xmlの読み込みにd3をつかってます)
d3.xml('sample.xml', function(xml){
console.log( new XMLSerializer().serializeToString(xml) );
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked