我使用此鏈接作爲我的開始文件製作項目。如何解決錯誤'FB'沒有定義no-undef上create-react-app項目?
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
變量創建例外?
謝謝!
由於FB是一個全球性的,並創建反應的,程序是模塊,你可能有來填補這一點。即使出現錯誤,應用程序是否仍在工作? http://stackoverflow.com/questions/5331165/how-to-workaround-fb-is-not-defined –