sql >> データベース >  >> NoSQL >> MongoDB

RリストをJSONに変換する

    gsub()を使用する

    jsontest <- gsub(pattern = '^\[', replacement = "", x = jsontest)
    jsontest <- gsub(pattern = '\]$', replacement = "", x = jsontest)
    

    結果:

      {
        "section_id": {},
        "name": "name1",
        "slug": "slug1"
      },
      {
        "section_id": {},
        "name": "name2",
        "slug": "slug2"
      },
      {
        "section_id": {},
        "name": "name3",
        "slug": "slug3",
        "categories": [
          {
            "section_id": {},
            "name": "name31",
            "slug": "slug31"
          },
          {
            "section_id": {},
            "name": "name32",
            "slug": "slug32"
          }
        ]
      }
    

    それでもjson クラス:

    > class(jsontest)
    [1] "json"
    

    ただし、空白が問題になる可能性があります。



    1. MongoDBおよびASP.NETMVCを使用した効率的なページング方法

    2. 最大サブドキュメントを含むドキュメントを返す

    3. ハウツー:50行未満のコードを使用して大規模にスキャンされたPDFにインデックスを付ける

    4. Mongolab接続エラー