当我传递我的智能合约函数的数组时,它给我的错误是“无效数量的实数函数”为什么?

时间:2019-04-22 07:18:42

标签: blockchain solidity web3js

我有一个名为ChainList.sol的智能合约文件,其中有一个名为“ getArticlesForSale”的函数(请参见下面的代码),该函数返回一个索引数组。我还有一个app.js文件,我在其中使用promise调用此函数(请参见以下代码)。但是在控制台中,这给了我一个错误,提示“无效的实参函数参数”。在app.js文件(第二个代码)中,它正在运行“捕获”部分并给出错误。

在我的合同中,我尝试将uint转换为“ uint32”,前提是javascript无法可靠地读取大整数,即“ uint256”。但是仍然出现此错误。

// ChainList.sol file
// fetch and return all article IDs which are still for sale
  function getArticlesForSale() public view returns (uint[] memory) {
    // prepare an output array
    uint[] memory articleIds = new uint[](articleCounter);

    uint numberOfArticlesForSale = 0;
    // iterate over all the articles
    for (uint i = 1; i <= articleCounter; i++) {
      if (articles[i].buyer == address(0)) {
        articleIds[numberOfArticlesForSale] = articles[i].id;
        numberOfArticlesForSale++;
      }
    }

    // copying article ids into smaller forSale array
    uint[] memory forSale = new uint[](numberOfArticlesForSale);

    for (uint j = 0; j < numberOfArticlesForSale; j++) {
      forSale[j] = articleIds[j];
    }

    return forSale;
  }
// app.js file, interacting with my smart contract
App.contracts.ChainList.deployed().then(function(instance){
      chainListInstance = instance;
      return instance.getArticlesForSale();
    }).then(function(articleIds){

      // retrieve the article placeholder and clear it
      $('#articlesRow').empty();

      for (var i = 0; i < articleIds.length; i++) {
        var articleId = articleIds[i];
        chainListInstance.articles(articleId.toNumber()).then(function(article){
          // 0 is id, 1 is seller, 3 is name, 4 is description, 5 is price
          App.displayArticle(article[0], article[1], article[3], article[4], article[5]);
        });
      }

      App.loading = false;

    }).catch(function(err){
      console.error(err.message);
      App.loading = false;
    });

任何人都可以告诉我如何将一系列坚固性传递给javascript promise。

1 个答案:

答案 0 :(得分:1)

它现在正在工作。

  • 删除“ build”文件夹。
  • 重新编译和迁移。

现在应该可以工作了。 就我而言,我实际上忘了在一条语句中删除评论,这就是为什么我遇到此错误。