我正在编写一个在结构上运行的链代码,这是结构链代码示例“ fabcar.go”的代码段。
我注意到我可以使用fabric-java-sdk从Java应用程序传递[]字符串参数,但是当我尝试从应用程序传递某些[] byte参数时遇到问题。
我尝试过其他功能,例如
func (stub *ChaincodeStub) GetArgs() [][]byte
func (stub *ChaincodeStub) GetArgsSlice() ([]byte, error)
func (stub *ChaincodeStub) GetBinding() ([]byte, error)
但仍然不知道该怎么做。
func (s *SmartContract) Invoke(APIstub shim.ChaincodeStubInterface) sc.Response {
// Retrieve the requested Smart Contract function and arguments
function, args := APIstub.GetFunctionAndParameters()
// Route to the appropriate handler function to interact with the ledger appropriately
if function == "queryCar" {
return s.queryCar(APIstub, args)
...
我错过了什么吗?现在不支持吗?请帮帮我!
答案 0 :(得分:0)
结果是所有的args都以[] [] byte类型传递给chaincode。在定义中是
args [][]byte
在
type ChaincodeStub struct {
TxID string
ChannelId string
chaincodeEvent *pb.ChaincodeEvent
args [][]byte
handler *Handler
signedProposal *pb.SignedProposal
proposal *pb.Proposal
// Additional fields extracted from the signedProposal
creator []byte
transient map[string][]byte
binding []byte
decorations map[string][]byte
}
这只是函数 GetFunctionAndParameters()将这些字节包装为字符串。
// GetFunctionAndParameters documentation can be found in interfaces.go
func (stub *ChaincodeStub) GetFunctionAndParameters() (function string, params []string) {
allargs := stub.GetStringArgs()
function = ""
params = []string{}
if len(allargs) >= 1 {
function = allargs[0]
params = allargs[1:]
}
return
}
返回值'function'实际上是字符串(allargs [0]),其余args将位于allargs [1:]中。