我想获取gRPC中服务器的所有方法(gPRC方法名称)的列表。我没有在NodeJS gRPC引用中找到方法或属性来获取gRPC方法列表 - https://grpc.io/grpc/node/grpc.Server.html。我怎样才能做到这一点?感谢)
答案 0 :(得分:0)
const Service = grpc.load(protoPath).examplePackage.exampleService;
// your methods:
const methods = Object.keys(Service.prototype);
我从here
获得了解决方案