我正在尝试按照本教程https://grpc.io/blog/grpc-web-interceptor/为我的 grpc-web 客户端请求添加拦截器。使用解释如何将拦截器绑定到调用的最后一行,在打字稿中使用该调用我首先得到一个错误,因为 protoc-gen 编译器在构造函数中使用以下参数创建了一个客户端服务
constructor (hostname: string,
credentials?: null | { [index: string]: string; },
options?: null | { [index: string]: string; })
所以我不能真正使用教程中解释的fromat
const promiseClient = new MyServicePromiseClient(
host, creds, {'unaryInterceptors': [interceptor1, interceptor2, interceptor3]});
我尝试使用类似的格式
const promiseClient = new MyServicePromiseClient(
host, creds, {'unaryInterceptors': 'interceptor1'});
但它不起作用,我的拦截器中有断点,它们永远不会到达那个点。如何将拦截器绑定到呼叫?
编辑
我的拦截器代码不是什么花哨的东西,它只是教程中的代码,在某种程度上转换为 Typescript 但在这里
export class interceptor1 {
intercept = function (request: any, invoker: any) {
// Update the request message before the RPC.
const reqMsg = request.getRequestMessage();
reqMsg.setMessage('[Intercept request]' + reqMsg.getMessage());
// After the RPC returns successfully, update the response.
return invoker(request).then((response: any) => {
// You can also do something with response metadata here.
console.log(response.getMetadata());
});
}
}