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.
我想查询保存在区块链中的所有值,其键以字符“O”开头并检索它们的列表。
也许您正在尝试为密钥创建一个模式并检索它。尝试使用 CompositeKey 函数。
您可以将“O”设置为您的第一个键,然后通过该键进行检索。
key, err := stub.CreateCompositeKey(index, []string{key1, key2, key3}) // Skiped stub.PutState(key, value)
并检索:
getStateByPartialCompositeKey(objectType, attributes)