我正在尝试使用 nodejs 创建超级账本链代码,而 fabric-shim 对我来说是新的。我正在尝试使用getHistoryForKey()
.
HistoryQueryIterator
我尝试通过使用进行迭代,while
但我没有成功。
@Transaction()
public async getAllHistory(ctx:Context,key:string):Promise<void>{
const history = await ctx.stub.getHistoryForKey(key);
while(history.next()){
history.next().then(value =>{
console.info("================>",value.toString());
})
.catch(err =>{
console.info("ERROR",err);
})
}
}
上面的代码给出了[object Object]
.
如果有人能指出我正确的方向,那将会很有帮助。