如何在按钮点击中的promises中呈现值?

时间:2018-02-21 16:43:40

标签: javascript reactjs es6-promise web3js

我有两个模块

App.jsx

import React from 'react';
import ReactDOM from 'react-dom';
import {accounts} from './contract.jsx';


class App extends React.Component{
    constructor(props){
    super(props);
    this.state={'text':'','accounts':'','clicked':false};
}
componentDidMount = () => {
    this.setState({'accounts':accounts()});
}
buttonAction = (e) => {
    this.setState({'clicked':true});
}
render(){
    return(
    <div align="center">
    <Button name="get all Accounts" action={this.buttonAction}/>
    {this.state.clicked ? <div>{this.state.accounts}</div> : null}
    </div>
    )}
}


const Button = (props) =>
    (<button onClick={props.action}>{props.name}</button>);

ReactDOM.render(<App/>,document.getElementById('root'));

和contract.jsx

import Web3 from 'web3';
var web3 = new Web3(Web3.givenProvider || 'http://localhost:8545');

let accounts = () => {
    // this is a promise
    web3.eth.getAccounts().then(function(result){console.log(result);})
    .catch(function(error){console.log(error.message)})
}
export {accounts};

我将accounts(承诺)功能从contract.jsx导出到app.jsx。由于我无法从promise中返回值,因此我需要将值分配给promise中的App组件状态(check componentDidMount)。为此,我需要替换&#39; console.log(结果)&#39;在accounts功能中,以#t; this.setState({&#39; accounts&#39;:result})&#39;。但组件accounts位于不同的模块中,应该是独立的。我无法在App函数中设置accounts组件的状态。

如何将promise中的值分配给App组件中的状态?还有其他更好的方法吗?我还可以使用一些代码更正来使我的组件更好地工作。

1 个答案:

答案 0 :(得分:1)

这有点hacky,但您可以尝试更改构造函数并将函数渲染为:

constructor(props) {
  super(props);
  this.state = {
    'text': '',
    'accounts': null,
    'clicked': false
  };
}

...

render() {
  return(
    <div>
      { this.state['accounts'] ? (
          <div align="center">
            <Button name="get all Accounts" action={this.buttonAction}/>
            {this.state.clicked ? <div>{this.state.accounts}</div>:null}
          </div>
        ) : null 
      }
    </div>
  )
}

componentDidMount函数触发时,它应该触发重新渲染。要存储promise返回的值,只需在contract.jsx中执行以下操作:

let accounts = () => {
  return web3.eth.getAccounts()
    .then( function(result) {
      return result; // Or it could be result.data, it depends
    }).catch( function(error) {
      console.error(error.message)
    });
}