私はXML形式のファイルをいくつか持っています。各ファイルには、XMLヘッダーと約15〜20項目が含まれています。私はこれらのファイルをMongoDBに保存したいと思っています。これはJSON形式のデータを格納しています。 MongoDBに保存したいデータのサンプルを以下に示します。XML形式のデータをMongoDBに格納する方法は?
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">
<channel>
<title>Channel Title</title>
<link>Channel link</link>
<description>Channel desc</description>
<!-- Item 1 -->
<item>
<title>Your Title</title>
<link>Your link</link>
<pubDate>Published date</pubDate>
<description>Your description</description>
</item>
<!-- Item 2 -->
<item>
<title>Your Title</title>
<link>Your link</link>
<pubDate>Published date</pubDate>
<description>Your description</description>
</item>
</channel>
</rss>
どのように進めますか? MongoDBにこれらのデータを格納する方法をいくつかの例とサンプルコードを使って助けてくれますか? 注:CRUD操作にノード/ Javascriptを使用します。
編集: がフォームであり、あなたが(チャンネルのタイトルのように、チャンネル名)カテゴリを選択して、あなただけのそのチャンネルに<item>
を追加するようなものだデータを格納する処理。しかし、データ全体はMongoDBに保存されます。
あなたにシーンを作る。 –
コードはどこですか? –
質問の理解に混乱はありますか?私は詳細を追加してみましょう。 –