0

我猜我错过了一些愚蠢的事情,所以我提前道歉。

我正在尝试以模拟模式运行在以下 URL 中找到的示例:https ://github.com/apigee-127/a127-samples/blob/master/weather-basic/api/swagger/swagger.yaml

JSON 响应看起来像是被转义了,并导致响应验证器失败:

{
  "message": "Response validation failed: invalid content type (text/plain).  These are valid: application/json",
  "failedValidation": true,
  "originalResponse": "{\"base\":\"Sample text\",\"clouds\":{\"all\":1},\"cod\":1,\"coord\":{\"lat\":1,\"lon\":1},\"dt\":1,\"id\":1,\"main\":{\"humidity\":1,\"pressure\":1,\"temp_max\":1,\"temp_min\":1,\"temp\":1},\"name\":\"Sample text\",\"sys\":{\"country\":\"Sample text\",\"id\":1,\"message\":1,\"sunrise\":1,\"sunset\":1,\"type\":1},\"weather\":[{\"description\":\"Sample text\",\"icon\":\"Sample text\",\"id\":1,\"main\":\"Sample text\"}],\"wind\":{\"deg\":1,\"speed\":1}}"
}

任何想法都会很棒!

4

2 回答 2

0

作为 json 对象发送不要对结果对象进行字符串化,

var result = {name:"asdf",id:1212}
res.json(result);
于 2016-06-13T08:13:22.577 回答
0

你需要发送这样的东西res.json({});

于 2016-05-04T09:15:30.590 回答