登录
首页 >  Golang >  Go问答

Chaincode GetState 响应为空

来源:stackoverflow

时间:2024-03-12 17:54:29 495浏览 收藏

今天golang学习网给大家带来了《Chaincode GetState 响应为空》,其中涉及到的知识点包括等等,无论你是小白还是老手,都适合看一看哦~有好的建议也欢迎大家在评论留言,若是看完有所收获,也希望大家能多多点赞支持呀!一起加油学习~

问题内容

func (t *ballot) initballot(stub shim.chaincodestubinterface, args []string) peer.response {

    if len(args) != 2 {
        return shim.error("incorrect number of arguments. expecting 2")
    }

    // ==== input sanitation ====
    fmt.println("- start init ballot")

    if len(args[0]) == 0 {
        return shim.error("1st argument must be a non-empty string")
    }
    if len(args[1]) == 0 {
        return shim.error("2nd argument must be a non-empty string")
    }

    personfirstname := args[0]
    personlastname := args[1]
    hash := sha256.new()
    hash.write([]byte(personfirstname + personlastname)) // ballotid is created based on the person's name
    ballotid := hex.encodetostring(hash.sum(nil))
    voteinit := "vote init"

    // ==== create ballot object and marshal to json ====
    ballot := ballot{personfirstname, personlastname, ballotid, voteinit}
    ballotjsonbyte, err := json.marshal(ballot)
    if err != nil {
        return shim.error(err.error())
    }
    err = stub.putstate(string(ballotid), ballotjsonbyte)

    //fixme:0-------------------------------------------------
    ballotasbyte, err := stub.getstate(string(ballotid))
    if err != nil {
        return shim.error(err.error())
    }
    bbballot := ballot{}
    //umarshal the data to a new ballot struct
    json.unmarshal(ballotasbyte, &bbballot)
    //
    fmt.println(bbballot)
    fmt.println(bbballot.personfirstname)
    return shim.success([]byte(ballotid))
    }

上面是代码,这是我正在运行的测试脚本

func test_invoke_initballot(t *testing.t) {
    scc := new(ballot)
    stub := shim.newmockstub("voting", scc)
    res := stub.mockinvoke("1", [][]byte{[]byte("initballot"), []byte("john"), []byte("c")})
    if res.status != shim.ok {
        t.log("bad status received, expected: 200; received:" + strconv.formatint(int64(res.status), 10))
        t.log("response: " + string(res.message))
        t.failnow()
    }
    if res.payload == nil {
        t.log("initballot failed to create a ballot")
        t.failnow()
    }

}

我试图在放入交易后从分类帐中读取数据。但是,我从两个 println 语句中都得到了空响应。

// putstate puts the specified `key` and `value` into the transaction's
// writeset as a data-write proposal. putstate doesn't effect the ledger
// until the transaction is validated and successfully committed.
// simple keys must not be an empty string and must not start with null
// character (0x00), in order to avoid range query collisions with
// composite keys, which internally get prefixed with 0x00 as composite
// key namespace.
putstate(key string, value []byte) error

文档中确实提到,putstate 在验证之前不会将交易提交到分类帐,但我只是尝试使用 mockstub 测试我的链代码,而无需设置结构网络。这个问题的解决办法是什么?

p.s问题已经解决了,这是设置结构体的正确方法

type ballot struct {
    PersonFirstName string
    PersonLastName  string
    BallotID        string
    VoteInit        string
}

解决方案


您尚未提供选票结构的代码。但根据你提供的信息,我猜测可能会发生什么。我认为您可能尚未导出字段,并且您的结构如下所示:

type ballot struct {
    personfirstname string
    personlastname string
    ballotid string
    voteinit string
}

但是,当您尝试使用 json.marshal(ballot) 将此对象转换为 json 时,没有任何字段添加到 json 对象,因为它们未导出。在这种情况下,您所要做的就是导出必要的字段(在字段名称开头使用大写字母)。您更新后的结构应如下所示:

type ballot struct {
    PersonFirstName string
    PersonLastName  string
    BallotID        string
    VoteInit        string
}

这是许多新手常犯的错误。祝您在未来的旅途中一切顺利!!!

附注即使此解决方案解决了您的问题,也请编辑您的问题并在此处添加您的选票结构的代码,因为这可能会在将来帮助其他人。另外,请在代码中添加适当的缩进,并在代码块中添加最后一个 } 符号。

好了,本文到此结束,带大家了解了《Chaincode GetState 响应为空》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>