我正在使用 AWS Lambda 从开放天气 api 获取 JSON 并将其返回。
这是我的代码:
var http = require('http');
exports.handler = function(event, context) {
var url = "http://api.openweathermap.org/data/2.5/weather?id=2172797&appid=b1b15e88fa797225412429c1c50c122a";
http.get(url, function(res) {
// Continuously update stream with data
var body = '';
res.on('data', function(d) {
body += d;
});
res.on('end', function() {
context.succeed(body);
});
res.on('error', function(e) {
context.fail("Got error: " + e.message);
});
});
}
它可以工作并返回 JSON,但它会在每个"之前添加反斜杠,如下所示:
"{\"coord\":{\"lon\":145.77,\"lat\":-16.92},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"cmc stations\",\"main\":{\"temp\":303.15,\"pressure\":1008,\"humidity\":74,\"temp_min\":303.15,\"temp_max\":303.15},\"wind\":{\"speed\":3.1,\"deg\":320},\"clouds\":{\"all\":75},\"dt\":1458518400,\"sys\":{\"type\":1,\"id\":8166,\"message\":0.0025,\"country\":\"AU\",\"sunrise\":1458505258,\"sunset\":1458548812},\"id\":2172797,\"name\":\"Cairns\",\"cod\":200}"
这是使用 (SwiftJSON) 将其检测为有效 JSON 来停止我的过度服务。
谁能告诉我如何使 API 信息以正确格式的 JSON 格式出现?
我试过.replace
这样:
res.on('end', function() {
result = body.replace('\\', '');
context.succeed(result);
});
它没有改变任何东西。仍然有相同的输出。