json 类别的API URL不显示任何内容

tquggr8v  于 11个月前  发布在  其他
关注(0)|答案(1)|浏览(157)

我构建电子商务应用程序,当我使用此URL时,我使用JSON服务器的假API
(http://localhost:3005/products)
它显示我的数据,但当我使用这个
(http://localhost:3005/products/categories)
它不工作,什么也没有显示
JSON数据:

products[{
"id" : 1,
"title" : "shirt", 
"price" : 25.76,
"category" : "men" }, 

{

"id" : 2,

"title" : "shirt", 

"price" : 23.76,

"category" : "men"  },
{
"id" : 3,
"title" : "shirt", 
"price" : 24.76,
"category" : "women" }
]

字符串
我以为它会显示一系列的类别。

yi0zb3m4

yi0zb3m41#

您的数据中未定义“categories”属性。您可以修改JSON数据以包含“categories”属性。

{
  "products": [
    {
      "id": 1,
      "title": "shirt",
      "price": 25.76,
      "category": "men"
    },
    {
      "id": 2,
      "title": "shirt",
      "price": 23.76,
      "category": "men"
    },
    {
      "id": 3,
      "title": "shirt",
      "price": 24.76,
      "category": "women"
    }
  ],
  "categories": ["men", "women"]
}

字符串
现在,如果您使用URL(http://localhost:3005/products/categories),它应该工作并返回类别数组

相关问题