如何在antdPro中使用自定义SVG图标?
1、项目使用的是svg图片,一般这样调用:
import CustomIcon from './aa.svg'; render(){ return(<img src={CustomIcon}/>) }
或者是这样:
使用 js 文件来存储 svg,并能直接在<Icon>
组件中使用:
dd.js:
import React from 'react'; const cc = props => ( <svg width="1em" height="1em" viewBox="0 0 28 28" > <g stroke="xxx" strokeWidth={2} fill="none" fillRule="evenodd"> <path d="xxx" strokeLinecap="xxx" /> </g> </svg> ); export default bb;
使用:
import bb from './dd' render(){ return(<Icon component={bb} />) }
但是!不能直接将svg作为Icon的component:
ee.svg:
<?xml version="1.0" encoding="UTF-8"?> <svg width="28px" height="28px" viewBox="0 0 28 28" xxx> <desc></desc> <g xxx></g> </svg>
ff.js:
import Ee from './ee.svg' render(){ return(<Icon component={Ee} />) }
这样程序报错
2、将自定义SVG直接作为Icon组件的注意点如下:
以上截图出自antd的Icon组件
3、但是我使用的antdPro框架,配置文件是config.js
和 plugin.config.js
,没有webpack.config.js
文件,所以不知道怎么配置webpack
,如何解决?
解决方案:
(1)在config.js
中添加这行代码:
urlLoaderExcludes: [/.svg$/],
(2)在plugin.config.js
中添加
config.module .rule('svg') .test(/\.svg(\?v=\d+\.\d+\.\d+)?$/) .use([ { loader: 'babel-loader', }, { loader: '@svgr/webpack', options: { babel: false, icon: true, }, }, ]) .loader(require.resolve('@svgr/webpack'));
参考:umirc 配置支持 ant-design Icon 自定义 svg 图标 #1078
(3)安装svgr/webpack
npm install @svgr/webpack
(4)直接在Icon中使用自定义SVG,并使用 component的属性
import Gggg from './gggg.svg' <Icon component={()=><Gggg fill="#00CC33" width="100" height='100'/>} />
这样就能使用了。
4、但是,这样会导致项目之前使用<img>
标签来调用svg的方法失效!
import CustomIcon from './aa.svg'; render(){ return(<img src={CustomIcon}/>) }
项目会报一个错误:
Invalid value for prop src
on <img> tag. Either remove it from the element
也就是说会让<img scr='xxx'>
无效,导致图裂
目前还没有兼容性的办法去解决,如果有读者有了兼容性的解决方法,欢迎告知!
(完)
相关推荐
mapaler 2020-07-17
MIKUScallion 2020-07-05
Dickzeng 2020-07-05
wallowyou 2020-06-28
hermanncain 2020-06-25
mapaler 2020-06-21
Dickzeng 2020-06-17
程序员俱乐部 2020-06-11
lanzhusiyu 2020-06-09
hermanncain 2020-05-09
Elena0 2020-04-11
Leonwey 2020-04-11
wallowyou 2020-03-05
jinxiutong 2020-02-10
jinxiutong 2020-02-03
mqbeauty 2020-01-08
mapaler 2020-01-17
Elena0 2020-01-12
mapaler 2020-01-05