Google APIからインポートされたデータで反応コンポーネントを作成しようとしています。私は、コードがconsole.logで動作しているのを見ることができますが、Reactレンダリングメソッドでそのコードを使用しようとすると、何も得られません。クラス内で関数を移動すると、定義されていない関数として呼び出されます。なぜ私は理解できないのですか?多くの場合反応関数が定義されていません
function handleTouchTap() {
console.log('CHIP selected');
authorize();
}
function handleAccounts(response) {
console.log(response.result.username);
var username = response.result.username
console.log(username);
}
function authorize(event) {
var useImmidiate = event ? false : true;
var authData = {
client_id: CLIENT_ID,
scope: SCOPES,
immidiate: useImmidiate
};
gapi.auth.authorize(authData, function (response) {
gapi.client.load('analytics', 'v3').then(function() {
console.log(response);
gapi.client.analytics.management.accounts.list().then(handleAccounts);
});
});
}
class Chips extends React.Component {
render() {
return (
<div style={styles.wrapper}>
<Chip
onTouchTap={handleTouchTap}
style={styles.chip} >
<Avatar icon={<FontIcon className="material-icons">perm_identity</FontIcon>} />
Login
</Chip>
<Chip
style={styles.chip} >
<Avatar icon={<FontIcon className="material-icons">account_circle</FontIcon>} />
{this.username}
</Chip>
</div>
);
}
}
申し訳ありません。私はStackOverflowに慣れていない。コードを投稿しようとしていましたが、それを行う方法を理解するのに時間がかかりましたか? – Parth
'onTouchTap = {handleTouchTap}'で参照されている 'handleTouchTap'関数が表示されません – Li357
あなたはエラーを追加できますか? –