5

我正在使用 react-native 玩 aws mobilehub,我希望它可以为我加快后端托管速度。

但是,我无法使其后端 API 正常工作。在长期使用他们的文档后,我确定了它的 lambda 函数和 dynamodb 服务之间的问题。

任何想法都非常感谢!

问题#1

正如标题所说:我的 aws lambda 函数可以请求它的 dynamodb 但没有响应。这里出了什么问题?或者如何从 AWS dynamodb 获取调试信息?(我 gg 并启用了 Cloudtrial,但它似乎也没有 dynamodb 的操作日志。)

拉姆达侧

这里我有最简单的 node.js 6.10 代码:

const AWS = require('aws-sdk');
AWS.config.update({region: 'us-east-2'});
const dynamodb = new AWS.DynamoDB.DocumentClient();

exports.handler = function(event, context, callback) {
    var responseCode = 200;
    var requestBody, httpMethod, res;
    console.log("request: " + JSON.stringify(event));

    // Request Body
    requestBody = event.body;

    /*testing dynamodb with put*/

    console.log("PUT begins");
    let putItemParams2 = {
        TableName: "xxxx-mobilehub-xxxx-Test",//tableName
        Item: {businessId:'putItemParams2r3',test:'yooo', hmm:'hhhh'}
    };
    console.log("putItemParams2: ",putItemParams2);
    dynamodb.put(putItemParams2, (err, data) => {
        console.log("putItemParams2");
        if (err) console.log("dynamodb err: ",err, err.stack); // an error occurred
        else     console.log("dynamodb data: ",data);           // successful response
    });
    console.log("PUT end");

    var response = {
        statusCode: responseCode
        //....
    };

    ...
    //comment out context.succeed here to avoid program termination before intended. 
    //console.log("response: " + JSON.stringify(response))
    //context.succeed(response);
};

日志

当前面的代码被触发时,我可以从 AWS CloudWatch 看到日志:

START RequestId: 3d7c5f7f-1b98-11e8-ad00-93a6d10c8f4e Version: $LATEST
[timestamp] PUT begins
[timestamp] putItemParams2: { TableName: 'xxx-mobilehub-xxxx-Test',
Item: { businessId: 'putItemParams2r3', test: 'yooo', hmm: 'hhhh'}}
[timestamp] put end
END RequestId: 3d7c5f7f-1b98-11e8-ad00-93a6d10c8f4e

所以没有错误,没有数据,没有响应。我检查了我的 dynamodb 并没有插入任何内容。

额外信息

条件#1:这个 dynamodb 表具有公共访问权限,因为我想排除身份验证问题。

条件#2:我确保我的 lambda 函数可以访问这些表。例如 arn:aws:dynamodb: :xxxx:table/xxxx-mobilehub-xxxx- 允许一切

条件#3:我为自己构建了一个简单的node.js来执行(aws-sdk),并且该服务器使用相同的代码工作得非常好。我能够从我的dynamodb中“获取”和“放置”项目 int & out桌子。

问题#2

我的 react-native 代码使用“aws-amplify-react-native”。API.put 很好,并且 lambda 函数至少正在接收 api 调用(来自问题#1)。

但是,API.get 返回 403 错误,并且 lambda 函数甚至没有此操作的日志。

async function getBusiness(){
    const path = "/Test";
    const api = "TestCRUD";
    let queryGetBusiness = {body: {userId: "hmmm"}};

    try {
        let apiResponse = await API.get(api, path, queryGetBusiness)//.then((data)=>{console.log(data)});
        let apiResponseJson = await JSON.stringify(apiResponse);
        console.log("response from saving Business: " + apiResponseJson);
    }
    catch (e) {console.log(e);}
} 

PS(AWS可以用这个mobilehub做得更好。他们的文档缺乏细节,我猜awsmobile cloud-api调用有一些问题。)

4

1 回答 1

0
const AWS = require('aws-sdk');
AWS.config.update({ region: 'us-east-2' });
const dynamodb = new AWS.DynamoDB.DocumentClient();

exports.handler = function (event, context, callback) {
    var responseCode = 200;
    var requestBody, httpMethod, res;
    console.log("request: " + JSON.stringify(event));

    // Request Body
    requestBody = event.body;

    /*testing dynamodb with put*/
    console.log("PUT begins");
    let putItemParams2 = {
        TableName: "xxxx-mobilehub-xxxx-Test",//tableName
        Item: { businessId: 'putItemParams2r3', test: 'yooo', hmm: 'hhhh' }
    };
    console.log("putItemParams2: ", putItemParams2);
    dynamodb.put(putItemParams2, (err, data) => {
        console.log("putItemParams2");
        if (err) console.log("dynamodb err: ", err, err.stack); // an error occurred
        else {
            console.log("dynamodb data: ", data);
            context.succeed(response);
        }
        // Call these here
        console.log("PUT end");
    });

    //console.log("response: " + JSON.stringify(response))
};

确保context.succeed在回调函数内部调用。如上。

您也可以只使用第三个参数来handler运行 -callback而不是context.succeed喜欢callback(null, response);

于 2018-02-27T11:54:44.127 回答