我使用MS VS 2015开发AWS lambda node.js函数。我总是有错误 " TypeError:XXX不是函数"无论我调用什么AWS功能。例如 代码是
var AWS = require('aws-sdk');
var docClient = new AWS.DynamoDB.DocumentClient();
我收到了错误:
TypeError: dynamodb.DocumentClient is not a function
如果我评论这一行并写下
context.succeed();
我收到了错误:
TypeError: context.succeed is not a function
任何人都知道问题是什么