将合同结果标记存储在变量

时间:2017-10-30 07:06:08

标签: ethereum solidity contract web3js go-ethereum

我有一个web3常量看起来像这样。

const test = contract_instance.methods.getPost(15).call().then(console.log);

这会返回这样的结果。

Result {
  '0': '2017-08-28',
  '1': '19:18:04.986593',
  '2': '07:17:00',
  '3': '11112323',
  '4': '12',
  date: '2017-08-28',
  login_time: '19:18:04.986593',
  logout_time: '07:17:00',
  login_device_id: '11112323',
  user_id: '12' }

现在,当我想通过 console.log(test [0]); 来控制单个标记时,返回 undefined 我的方法是将每个结果标记存储在其单个变量中。需要一些建议。

2 个答案:

答案 0 :(得分:1)

then()将函数作为参数,在履行承诺时调用。然后,您可以将值添加到数组中,例如:

var results = []
contract_instance.methods.getPost(15).call().then(function(value){
   console.log(value)
   results.push(value)
});

results[0]将是您要查找的结果对象,results[0]['0']会为您提供日期'2017-08-28'。

答案 1 :(得分:0)

通过使用.then(...)链接调用,返回的值是Promise类型,而不是您期望的Result对象(以及写入控制台的内容),并且索引无法访问。 有关详细信息,请参阅https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then