我的协议缓冲区规范如下所示:
message CreateContextRequest {
map<string, google.protobuf.ListValue> my_mapping = 2;
}
使用此协议缓冲区的My Go代码如下所示:1: fmt.Println("protocBuff = ", protocBuff);
2: fmt.Println("protocBuff.MyMapping = ", protocBuff.MyMapping);
3: for myKey, myListValue := range protocBuff.MyMapping {
4: fmt.Println("myKey:", myKey, "=>", "myListValue:", myListValue)
5: for _, element := range myListValue {
6: fmt.Printf("element = ", element)
7: }
8: }
1-4行工作正常。但是第5行给出了此编译时错误:cannot range over myListValue (type *structpb.ListValue)
那么如何遍历myListValue? 最佳答案
ListValue的定义(除去了 private 字段)为:
type ListValue struct {
// Repeated field of dynamically typed values.
Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
}
因此,可以使用以下方法进行迭代:for _, element := range myListValue.Values
for _, element := range myListValue.GetValues()
(检查nil
myListValue
时更安全)for _, element := range myListValue.AsSlice()
(可能更好,取决于您对这些值所做的操作)。