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知识!
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习