Showing on console: Slow network is detected. Fall

2020-05-19 20:57发布

what can I do in this case? I'm seeing this on my console when ran on the browser the AngularJS App:

Slow network is detected. Fallback font will be used while loading: /bootstrap/dist/fonts/glyphicons-halflings-regular.woff2

I also see the fonts changing while loading.

11条回答
来,给爷笑一个
2楼-- · 2020-05-19 21:30

I am happy with this meta tag.

<meta content='IE=Edge;chrome=35+' https-equiv='X-UA-Compatible'/>
查看更多
甜甜的少女心
3楼-- · 2020-05-19 21:35

This browser-independent JavaScript solution prevents these logs and FOUT-FOIT-FOFT by making the user wait until the font has been downloaded.

In client JavaScript use fontfaceobserver to detect if the font is loaded, and do not show the markup using that font until the font is loaded.

How not to show the markup depends on which stack you use.

查看更多
小情绪 Triste *
4楼-- · 2020-05-19 21:38

I am facing same issue.To resolve this issue simply inspect the browser page -> goto console -> On right top open console setting -> select/check users messages only option it will disappear these slow network logs

查看更多
Anthone
5楼-- · 2020-05-19 21:41

This is due to the multiple frameworks that are been used. You can ignore it. It does not create any problems. You can just remove things from console only.

查看更多
干净又极端
6楼-- · 2020-05-19 21:44

To hide these messages can do following steps :

  1. Just open inspect the browser page
  2. Click on console tab
  3. On right top open console settings
  4. Check users messages only option

It will hide all slow network console messages. But keep in mind, It will only hide those messages not resolve the issue.

FYI :

FYI

查看更多
登录 后发表回答