在React.js中使用hello.js.

时间:2015-07-16 15:29:19

标签: reactjs hello.js

我想了解如何使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'
    });

}

感谢

0 个答案:

没有答案