Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 React 客户端向服务器发送文件。我知道为此我应该使用 grpc 流并将文件拆分成块。那么,问题是如何将这些块发送到服务器?
我们的 Github 存储库上有一些基本教程:https ://github.com/grpc/grpc-web#how-it-works关于如何使用流式传输。
如果您需要客户端流式传输,目前不支持。您可能希望重新设计您的 RPC,以便将一堆块作为一系列一元调用发送,并在服务器端重新组装这些块。