我想了解如何使Hello.js与React.js一起使用,尤其是自定义事件处理程序hello.on
由于我是React.js的新手,我不明白如何将非React事件绑定到应用流程中。
我尝试将事件处理程序放在componentDidMount
处理程序
handleClick(){
hello('twitter').login();
}
componentDidMount(){
hello.on('auth.login', function(auth) {
// Call user information, for the given network
hello(auth.network).api('/me').then(function(r) {
console.log(r);
});
});
hello.init({
'twitter' : 'J1jqqO50tcLtLx8Js0VDitjZW'
},
{
redirect_uri:'/',
oauth_proxy: 'https://auth-server.herokuapp.com/proxy'
});
}
感谢