MongoDB 导入 JSON 文件时出错

MongoDB giving error while importing JSON file

我正在尝试将我的 json 文件导入 mongodb.I,我认为没有错误,例如“缺少 { 符号”,但 mongodb 总是出错。 我应该怎么做才能通过 it.I 找到一个示例并像 it.But 一样编辑仍然相同 result.I 将 " 符号添加到所有变量。 这是我的 JSON 文件

[
{
    "name":"Bol Peynirli",
    "varients":[
       "small", 
       "medium", 
       "large"
],
    "prices":[
       {
          "small":53.99,
          "medium":61.99,
          "large":101.99
       }
],
    "category":"pizzalar",
    "image":"https://www.dwfdzxoxxagos.cloudfront.net/images/products/web_detay_4_peynirli.jpg",
    "description":"4x4 PEYNİRLİ",
},
  {
    "name":"Bol Bol",
    "varients":[
       "small", 
       "medium", 
       "large"
    ],
    "prices":[
       {
          "small": 49.9,
          "medium": 57.99,
          "large": 97.99
       }
    ],
    "category": "Pizza",
    "image": "https://dwfdzxoxxagos.cloudfront.net/"image"s/products/web_detay_bolbol.jpg",
    "description":
      "Pizza Sosu, Mozarella Peyniri, Dilim Sucuk, Küp Sucuk, Soğan, Yeşil Biber, Mantar, Siyah Zeytin, Mısır, Şerit Sosis, Kırmızı Közleme Biber, Susam",
  },
  {
    "name": "Kaburgalı",
    "varients": ["small", "medium", "large"],
    "prices": [
      {
        "small": 53.99,
        "medium": 61.99
      }
    ],
    "category": "Pizza",
    "description":
      "Barbekü Sos, Mozarella Peyniri, Fırınlanmış Patlıcan, Füme Kaburga, Soğan, Mantar, Susam, Kekik",
    "image": "https://dwfdzxoxxagos.cloudfront.net/"image"s/products/web_detay_kaburgali.jpg",
  },
  {
    "name": "Margarita",
    "varients": ["small", "medium", "large"],
    "prices": [
      {
        "small": 41.99,
        "medium": 49.99,
        "large": 89.99
      }
    ],
    "category": "Pizza",
    "image": "https://dwfdzxoxxagos.cloudfront.net/"image"s/products/web_detay_margarita.jpg",
    "description":
      "Pizza Sosu, Mozarella Peyniri, Domates",
  },
  {
    "name": "Süper Sucuklu",
    "varients": ["small", "medium", "large"],
    "prices": [
      {
        "small": 49.99,
        "medium": 57.99,
        "large": 97.99
      }
    ],
    "category": "Pizza",
    "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/0_y_supersucuklu.jpg",
    "description":
      "Pizza Sosu, Mozarella Peyniri, Küp Sucuk, Siyah Zeytin, Mantar, Kırmızı Köz Biber, Kekik",
  },
  {
    "name": "v",
    "varients": ["small", "medium", "large"],
    "prices": [
      {
        "small": 45.99,
        "medium": 53.99
      }
    ],
    "category": "Pizza",
    "image": "https://dwfdzxoxxagos.cloudfront.net/"image"s/products/web_detay_patsos.jpg",
    "description":
      "Mozarella Peyniri, Pizza Sosu, Parmak Patates, Şerit Sosis",
  },
];

所以它给出了这样的错误

您在 JSON 对象的一些图像属性中嵌入了双引号。在 JSON.

中结尾 } 之前也有不应该出现的逗号

去掉双引号和错位的逗号,即可生效。

[
   {
      "name":"Bol Peynirli",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":53.99,
            "medium":61.99,
            "large":101.99
         }
      ],
      "category":"pizzalar",
      "image":"https://www.dwfdzxoxxagos.cloudfront.net/images/products/web_detay_4_peynirli.jpg",
      "description":"4x4 PEYNİRLİ"
   },
   {
      "name":"Bol Bol",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":49.9,
            "medium":57.99,
            "large":97.99
         }
      ],
      "category":"Pizza",
      "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/web_detay_bolbol.jpg",
      "description":"Pizza Sosu, Mozarella Peyniri, Dilim Sucuk, Küp Sucuk, Soğan, Yeşil Biber, Mantar, Siyah Zeytin, Mısır, Şerit Sosis, Kırmızı Közleme Biber, Susam"
   },
   {
      "name":"Kaburgalı",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":53.99,
            "medium":61.99
         }
      ],
      "category":"Pizza",
      "description":"Barbekü Sos, Mozarella Peyniri, Fırınlanmış Patlıcan, Füme Kaburga, Soğan, Mantar, Susam, Kekik",
      "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/web_detay_kaburgali.jpg"
   },
   {
      "name":"Margarita",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":41.99,
            "medium":49.99,
            "large":89.99
         }
      ],
      "category":"Pizza",
      "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/web_detay_margarita.jpg",
      "description":"Pizza Sosu, Mozarella Peyniri, Domates"
   },
   {
      "name":"Süper Sucuklu",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":49.99,
            "medium":57.99,
            "large":97.99
         }
      ],
      "category":"Pizza",
      "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/0_y_supersucuklu.jpg",
      "description":"Pizza Sosu, Mozarella Peyniri, Küp Sucuk, Siyah Zeytin, Mantar, Kırmızı Köz Biber, Kekik"
   },
   {
      "name":"v",
      "varients":[
         "small",
         "medium",
         "large"
      ],
      "prices":[
         {
            "small":45.99,
            "medium":53.99
         }
      ],
      "category":"Pizza",
      "image":"https://dwfdzxoxxagos.cloudfront.net/images/products/web_detay_patsos.jpg",
      "description":"Mozarella Peyniri, Pizza Sosu, Parmak Patates, Şerit Sosis"
   }
]