protobuf - grpc python,client怎样给map类型填值?
PHPz
PHPz 2017-04-18 10:09:14
0
2
694

.proto文件如果这个样子

message HelloRequired {
  
    map<string, string> args = 1;
    
}    
PHPz
PHPz

学习是最好的投资!

reply all(2)
黄舟
  test_dict = {}
  test_dict["key1"] = "value1"
  test_dict["key2"] = "value2"

It seems like just putting one of these in directly?

伊谢尔伦

Assign values ​​as follows

    import hellorequired_pb2
    test = hellorequired_pb2.HelloRequired()
    test.args["key1"] = "value1"
    test.args["key2"] = "value2"
    print test
    """
    输出如下
    args {
      key: "key1"
      value: "value1"
  }
   args {
     key: "key2"
     value: "value2"
  }
    """
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!