Failed to load resource: the server responded with a status of 400 (Bad Request) 错误请求解决

今天在学习项目的时候,一直出现这个问题
Failed to load resource: the server responded with a status of 400 (Bad Request) 。

解决了之后,顺便记录一下,这个问题是在用ajax发送请求的时候遇到的
一般这个问题无非就是 前端的参数类型和后端的参数类型不匹配。
后面经过调试,果然是类型不匹配产生的问题
在这里插入图片描述
经过查看mongo创建文档的规则时 发现 title只能输入字符串,在测试的时候我传入的是数字 所以报错了
Failed to load resource: the server responded with a status of 400 (Bad Request) 错误请求解决_第1张图片
因此出现这类错误 记得查看前后端匹配类型。

你可能感兴趣的:(node.js,node.js,javascript)