glyphicons-halflings-regular.woff2 net::ERR_ABORTED

来源:互联网 发布:adobe是什么软件 编辑:程序博客网 时间:2024/06/08 18:20

使用bootstrap日历控件问题记录

1、报错信息

使用bootstrap日历控件,图片和箭头出不来,且js报错如下:

 http://localhost:8080/fonts/glyphicons-halflings-regular.woff2 net::ERR_ABORTED

报错信息001

报错信息002

2、报错原因是:

在bootstrap.min.css中有对如下字体文件的引用:
@font-face{
font-family:’Glyphicons Halflings’;
src:url(../fonts/glyphicons-halflings-regular.eot);
src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(‘embedded-opentype’),
url(../fonts/glyphicons-halflings-regular.woff2) format(‘woff2’),
url(../fonts/glyphicons-halflings-regular.woff) format(‘woff’),
url(../fonts/glyphicons-halflings-regular.ttf) format(‘truetype’),
url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(‘svg’)}

资料:http://www.runoob.com/bootstrap/bootstrap-glyphicons.html

3、解决方案

去bootstrap官网下载源码,把字体文件拷贝到项目即可。官网下载路径:http://v3.bootcss.com/getting-started/#download
如下图:
ziti

阅读全文
1 0