发帖时出现验证错误 JSON

ValidationError when posting JSON

我为作者准备了这个架构:

module.exports = {
  "id": "Author",
  "properties": {
    "name": {
      "type": "string",
      "description": "The full name of the author"
    },
    "description": {
      "type": "string",
      "description": "A small bio of the author"
    },
    "books": {
      "type": "array",
      "description": "The list of books published on at least one of the stores by this author",
      "items": {
        "$ref": "Book"
      }
    },
    "website": {
      "type": "string",
      "description": "The website url of the author"
    },
    "avatar": {
      "type": "string",
      "description": "The url of the avatar of this author"
    }
  }
}

当我 POST 到 http://localhost:9000/authors/ 创建新作者时,我收到此错误:

error: Error of type InternalServerError found: ValidationError: books: Cast to Array failed for value "[ 'The Twits', 'The BFG' ]" at path "books"

这是我发布的JSON

{
    "name": "Roald Dahl",
    "description": "Writes childrens novels",
    "books": [
        "The Twits",
        "The BFG"
    ],
    "website": "www.roalddahl.com",
    "avatar": "https://www.natgeokids.com/wp-content/uploads/2016/11/Roald-Dahl-1-1.jpg"
}

据我所知,JSON 是正确的。该错误似乎表明 books 数组存在问题。是这种情况吗?如果是,我该如何解决?

正在添加图书架构:

module.exports = {
  "id": "Book",
  "properties": {
    "title": {
      "type": "string",
      "descrtiption": "The title of the book"
    },
    "authors": {
      "type": "array",
      "description": "List of authors of the book",
      "items": {
        "$ref": "Author"
      }
    },
    "isbn_code": {
      "type": "string",
      "description": "The stores where clients can buy this book"
    },
    "stores": {
      "type": "array",
      "description": "The stores where clients can buy this book",
      "items": {
        "type": "object",
        "properties": {
          "store": {
            "$ref": "Store"
          },
          "copies": {
            "type": "integer"
          }
        }
      }
    },
    "genre": {
      "type": "string",
      "description": "Genre of the book",
    },
    "description": {
      "type": "string",
      "description": "Description of the book"
    },
    "reviews": {
      "type": "array",
      "items": {
        "$ref": "ClientReview"
      }
    },
    "price": {
      "type": "number",
      "minimum": 0,
      "description": "The price of this book"
    }
  }
}

您正在使用 books 字段作为字符串数组发布 JSON,因此您的验证器对象应指定:

items: { type: "string" },