2017-09-28 33 views
0

我一直在AngularJS 2中工作,並且在本地服務器上託管時我沒有錯誤,一切都是okey.But託管到Firebase服務器時,一些錯誤出現在控制檯中。這裏是鏈接...:只在託管應用程序時出錯但在本地主機中不存在

出現在谷歌Chrome和Firefox這混合內容錯誤

https://test-calculadora.firebaseapp.com

錯誤

混合內容:在「https://test-calculadora.firebaseapp.com/頁面'通過HTTPS加載,但請求了一個不安全的樣式表'http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600'。此請求已被阻止;內容必須通過HTTPS提供。

該錯誤只出現在谷歌瀏覽器

ERROR TypeError: Cannot read property '0' of null 
at Object.updateDirectives (3.ad64bef68a696aaec9de.chunk.js:1) 
at Object.updateDirectives (vendor.be20388edeb374983d23.bundle.js:127) 
at or (vendor.be20388edeb374983d23.bundle.js:127) 
at mr (vendor.be20388edeb374983d23.bundle.js:127) 
at gr (vendor.be20388edeb374983d23.bundle.js:127) 
at or (vendor.be20388edeb374983d23.bundle.js:127) 
at mr (vendor.be20388edeb374983d23.bundle.js:127) 
at gr (vendor.be20388edeb374983d23.bundle.js:127) 
at or (vendor.be20388edeb374983d23.bundle.js:127) 
at mr (vendor.be20388edeb374983d23.bundle.js:127) 

回答

1

通知被示數鏈接如何開始以 'http' 而不是 'https' 時。 http本質上是「不安全的」。

'http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600' 

你應該可以添加's'到http,並且應該修復這些問題。

什麼谷歌一直在說:你的網頁上加載資源時//網址:

始終使用https。使用 Content-Security-Policy-Report-Only標頭來監控您網站上的混合內容 錯誤。使用升級不安全請求CSP指令 來保護您的訪問者免受不安全內容的侵害。

瞭解更多here

相關問題