zoukankan      html  css  js  c++  java
  • Failed to decode downloaded font

    这是由于maven编译的问题。在resource里面让font和ttf结尾的文件通过

    今天又出现这个问题了。2018-12-19 22:59

    <resources>
                <resource>
                    <directory>src/main/webapp</directory>
                    <filtering>true</filtering>
                    <excludes>
                        <exclude>**/*.woff</exclude>
                        <exclude>**/*.woff2</exclude>
                        <exclude>**/*.ttf</exclude>
                    </excludes>
                </resource>
                <resource>
                    <directory>src/main/webapp</directory>
                    <filtering>false</filtering>
                    <includes>
                        <include>**/*.woff</include>
                        <include>**/*.woff2</include>
                        <include>**/*.ttf</include>
                    </includes>
                </resource>
            </resources>

    但是这样根本就没有解决问题。IDEA真的很强大。它提示,cannot find declaration to go,不能找到目标

    .....最后才发现,原来我没有这个font,报的是404,哎呀,尴尬

  • 相关阅读:
    win10使用WampServer部署magento
    JavaScript的this详解
    jQuery的css
    jQuery.cssHooks
    jQuery属性
    jQuery选择器
    ajax中的stasus错误详解
    ajax
    js数组中的注意
    js的严格模式
  • 原文地址:https://www.cnblogs.com/fuckingPangzi/p/10108435.html
Copyright © 2011-2022 走看看