例如:有一个类似下面的函数:
import * as AWS from "aws-sdk";
import { Context } from "aws-lambda";
module.exports.hello = async (event:any, context:Context) => {
// eg. if you need a DynamoDB client
// const docClient: AWS.DynamoDB.DocumentClient = new AWS.DynamoDB.DocumentClient({region: 'ap-southeast-2'});
return {
statusCode: 200,
body: JSON.stringify({
message: 'function executed successfully!',
input: event,
}),
};
};
我可以学习 “ something()” 的标准或反射方法被执行时有什么功能?
例如。
public function something(string $fnStrArgument, int $fnIntArgument) : void
{
$this->aFunction($fnStrArgument);
$this->anotherFunction($fnIntArgument);
}
我的请求听起来像是回溯,但我想知道如何正确执行此操作?我只想学习如何像上面给出的那样记录方法执行。不管怎么说,还是要谢谢你。