.proto文件如果这个样子
message HelloRequired { map<string, string> args = 1; }
学习是最好的投资!
test_dict = {} test_dict["key1"] = "value1" test_dict["key2"] = "value2"
Nampaknya hanya meletakkan salah satu daripada ini secara langsung?
Tetapkan nilai seperti berikut
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" } """
Nampaknya hanya meletakkan salah satu daripada ini secara langsung?
Tetapkan nilai seperti berikut