我有两个模块
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
(promise)函数从contract.jsx
导出到app.jsx
。由于我无法从promise中返回值,因此我需要将该值分配给promise中的App
组件的状态(检查componentDidMount
)。为此,我需要将accounts
函数中的“console.log(result)”替换为“this.setState({'accounts':result})”。但是组件和帐户
在不同的模块中,应该是独立的。我无法在我的账户
功能中设置应用程序
组件的状态。
如何将promise中的值分配到App
组件中的我的状态?还有其他更好的方法吗?我还可以使用一些代码更正来使我的组件工作得更好。
这有点老套,但您可以尝试将构造函数和渲染函数更改为:
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)
});
}
在我点击提交按钮后,我如何使页面刷新或更新页面中的内容?我尝试将(我知道不是React方式,具有相同的结果)放入提交函数(、)中,但POST请求没有得到响应 OpenTickets.js CardConversation.jsx
我正在使用贝宝快捷结账按钮。问题是,如果用户更改付款金额,paypal按钮将再次呈现。当我点击paypal按钮时,有没有办法渲染该按钮?我与贝宝结帐工作。js https://developer.paypal.com/docs/archive/checkout/integrate/# 更新:在web组件中工作,所以所有代码都在renderedcall back()中
我正在我的演示应用程序中使用这个datepicker https://www.npmjs.com/package/react-datepicker但是我的datepicker是在我点击输入字段时打开的。当用户点击右侧的按钮和图标而不是点击输入时,我们可以打开日期选择器吗?
问题内容: 我正在使用Scrapy爬行网页。单击某些按钮时,仅会弹出一些我需要的信息(当然,单击后也会显示在HTML代码中)。 我发现Scrapy可以处理的形式(如登录)如图所示这里。但是问题在于没有表格可以填写,所以这不是我所需要的。 如何简单地单击一个按钮,然后显示我需要的信息? 我是否必须使用诸如机械化或lxml之类的外部库? 问题答案: Scrapy无法解释javascript。 如果你绝
我正在尝试在Selenium中测试图像按钮点击。 图像是事件,当我点击sgt消息出现我 超文本标记语言代码:
不含硒 我需要点击一个网页上的按钮。有可能与请求有关吗?我不想用硒。 提前道谢!