このリンクを開始ファイルとして使用してプロジェクトを作成しました。
https://github.com/facebookincubator/create-react-app
しかし、Facebookのログインボタンを公式ドキュメントに従って作成しようとした後、これを使用しました。
componentDidMount(){
console.log('login mount');
window.fbAsyncInit = function() {
FB.init({
appId : '320866754951228',
xfbml : true,
version : 'v2.6'
});
FB.getLoginStatus(function(response) {
//this.statusChangeCallback(response);
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
そのため、ブラウザが更新されたときにこのエラーが発生しました。
Failed to compile.
Error in ./src/components/user_profile/LoginForm.js
/Sites/full_stack_production/xxxxx
70:13 error 'FB' is not defined no-undef
76:13 error 'FB' is not defined no-undef
✖ 2 problems (2 errors, 0 warnings)
だから、このエラーを引き起こすESLintが原因だと思います。これを修正したり、このFB
変数の例外を作成したりするにはどうすればよいですか?
ありがとう!