如何解析通过 Insomnia 发送的 JSON
How to parse a JSON sent via Insomnia
我有一个带 fastify 的小型服务器,我已经设置了所有路由,现在我需要测试后端以解析正文中的 JSON。
...
const isJSON = (str) => {
try {
console.log(str);
JSON.parse(str);
console.log("json parsed");
} catch(error) {
return false;
}
return true;
};
const checkBody = (req, res) => {
if(!isJSON(req.body)) {
res.code(codes.BAD_REQUEST);
res.header('content-type', 'text/text');
res.send("Error: The body is not a JSON");
throw new Error();
}
};
...
我正在用 Insomnia 做请求,正文写成
{
"serial": "31A15",
"sensor_type": "Temperature",
"value_registered": {
"value_type": "Temperature",
"value": "24.6",
"unit_of_measure": "Celsius"
},
"value_registered_at": "02/05/2021 9:20:05"
}
但是当我尝试解析 JSON 时,函数 isJSON
return false.
这很奇怪,所以我尝试检查 req.body
只是在做 console.log(req.body)
的 JSON,它打印了以下
{
serial: '31A15',
sensor_type: 'Temperature',
value_registered: {
value_type: 'Temperature',
value: '24.6',
unit_of_measure: 'Celsius'
},
value_registered_at: '02/05/2021 9:20:05'
}
这就是为什么 isJSON
return 编辑了 false
,这不是 JSON。这里发生了什么?是失眠的问题还是我必须做一些不同的事情?
我发现fastify已经解析了body中的json,如果有错误,它会发送一个错误码。所以我不需要 checkBody
和 isJSON
.
我有一个带 fastify 的小型服务器,我已经设置了所有路由,现在我需要测试后端以解析正文中的 JSON。
...
const isJSON = (str) => {
try {
console.log(str);
JSON.parse(str);
console.log("json parsed");
} catch(error) {
return false;
}
return true;
};
const checkBody = (req, res) => {
if(!isJSON(req.body)) {
res.code(codes.BAD_REQUEST);
res.header('content-type', 'text/text');
res.send("Error: The body is not a JSON");
throw new Error();
}
};
...
我正在用 Insomnia 做请求,正文写成
{
"serial": "31A15",
"sensor_type": "Temperature",
"value_registered": {
"value_type": "Temperature",
"value": "24.6",
"unit_of_measure": "Celsius"
},
"value_registered_at": "02/05/2021 9:20:05"
}
但是当我尝试解析 JSON 时,函数 isJSON
return false.
这很奇怪,所以我尝试检查 req.body
只是在做 console.log(req.body)
的 JSON,它打印了以下
{
serial: '31A15',
sensor_type: 'Temperature',
value_registered: {
value_type: 'Temperature',
value: '24.6',
unit_of_measure: 'Celsius'
},
value_registered_at: '02/05/2021 9:20:05'
}
这就是为什么 isJSON
return 编辑了 false
,这不是 JSON。这里发生了什么?是失眠的问题还是我必须做一些不同的事情?
我发现fastify已经解析了body中的json,如果有错误,它会发送一个错误码。所以我不需要 checkBody
和 isJSON
.