8

我正在使用 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);
    });

它没有改变任何东西。仍然有相同的输出。

4

5 回答 5

17

您将其作为字符串发布。

尝试 context.succeed(JSON.parse(result))

从文档

提供的结果必须与 JSON.stringify 兼容。如果 AWS Lambda 无法字符串化或遇到另一个错误,则会引发未处理的异常,并将 X-Amz-Function-Error 响应标头设置为 Unhandled。

http://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html

所以本质上它把你的 json 字符串作为一个字符串并调用 JSON.stringify ......因此,正如你所看到的那样转义所有引号。传递解析的JSON对象成功,应该不会有这个问题

于 2016-03-21T01:35:37.653 回答
1

在 Java 的情况下,只需返回一个 JSONObject。看起来在返回字符串时它正在尝试进行一些转换并最终转义所有引号。

于 2018-08-10T23:14:43.710 回答
0

如果使用 Java,则响应可以是用户定义的对象,如下所示

class Handler implements RequestHandler<SQSEvent, CustomObject> {
    public CustomObject handleRequest(SQSEvent event, Context context) {
        return new CustomObject();
    }
}

示例代码可以在这里找到。

于 2021-03-14T23:18:03.383 回答
-1

对结果执行此操作: response.json()

于 2019-07-03T21:15:10.803 回答
-2

您可以使用:

    res.on('end', function() {
 context.succeed(body.replace(/\\/g, '') );

用什么替换\..

于 2016-03-21T01:25:39.747 回答