我想要:

  • 解析文件 .

  • 根据名称排序 . 排序顺序应该是升序或降序 .

  • 打印菜单,其中包含控制台的详细信息:

JSON文件的内容:

{
      "breakfast_menu": {
        "food": [
          {
            "name": "Belgian Waffles",
            "price": "$5.95",
            "description": "Two of our famous Belgian Waffles with plenty of real maple syrup",
            "calories": "650"
          },
          {
            "name": "Strawberry Belgian Waffles",
            "price": "$7.95",
            "description": "Light Belgian waffles covered with strawberries and whipped cream",
            "calories": "900"
          },
          {
            "name": "Berry-Berry Belgian Waffles",
            "price": "$8.95",
            "description": "Light Belgian waffles covered with an assortment of fresh berries and whipped cream",
            "calories": "900"
          },
          {
            "name": "French Toast",
            "price": "$4.50",
            "description": "Thick slices made from our homemade sourdough bread",
            "calories": "600"
          },
          {
            "name": "Homestyle Breakfast",
            "price": "$6.95",
            "description": "Two eggs, bacon or sausage, toast, and our ever-popular hash browns",
            "calories": "950"
          }
        ]
      }
    }