美文网首页
报错:json-server Type of "xxx" (st

报错:json-server Type of "xxx" (st

作者: 青山白衣 | 来源:发表于2021-04-16 07:55 被阅读0次
    使用json-server mock数据时遇到的问题:

    当在db.json中定义

    {
      "name": "Jack"
    }
    

    会报错: json-server Type of "name" (string) is not supported.
    原因与json-server的工作方式有关
    直接暴露在JSON对象根目录下的每个键都被视为json-server中的单独URL。
    需要使用对象数组对象

    {
      "name": ["Jack"]
    }
    

    访问 http://localhost:3001/name,页面显示["Jack"]

    原文:https://stackoverflow.com/questions/46195599/type-of-id-number-in-user-json-is-not-supported-use-objects-or-arrays-of-ob/47628015

    相关文章

      网友评论

          本文标题:报错:json-server Type of "xxx" (st

          本文链接:https://www.haomeiwen.com/subject/svpslltx.html