18

クライアントとサーバー アプリケーション間の通信に grpc golang を使用しています。以下はプロトコルバッファのコードです。

syntax = "proto3";
package Trail;

service TrailFunc {
  rpc HelloWorld (Request) returns (Reply) {}
}

// The request message containing the user's name.
message Request {
  map<string,string> inputVar = 1;
}
// The response message containing the greetings
message Reply {
  string outputVar = 1;
}

map[string]string ではなく、メッセージ データ構造内にタイプ map[string]interface{} のフィールド inputVar を作成する必要があります。どうすれば達成できますか?前もって感謝します。

4

3 に答える 3