原來使用百度CDN上的bootstrap 3.0.3,升級到3.3.4後即出現以下錯誤:css
Font from origin 'http://apps.bdimg.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8080' is therefore not allowed access.bootstrap
在網上找了不少,都說要配置: 服務器
<IfModule headers_module>app Header set Access-Control-Allow-Origin "*"ide </IfModule>spa |
可是在服務器上配置了也沒有效果。後來纔想起來,這個配到本身的服務器上是沒用的,得在CDN服務器上配置,可是這個CDN不是咱們的,無法配置。cdn
換了個CDN:ci
http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.cssget
問題解決。it