我正在使用react-native播放aws mobilehub,我希望它可以为我加速后端托管。
但是,我无法使其后端API正常工作。经过与他们的文档的长期运行,我确定了它的lambda函数和dynamodb服务之间的问题。
非常感谢任何想法!
正如标题所说:我的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),这个服务器使用相同的代码完美地工作。 我能够“获得”和“放”项目int&从我的动力学表中出来。
我的反应原生代码使用'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);}
}
P.S.(AWS可以通过这个mobilehub做得更好......他们的文档缺乏细节,而且我认为awsmobile cloud-api调用有一些问题。)
答案 0 :(得分: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);