gpt4 book ai didi

angular5 - Angular 5,将 SVG 文件导入组件

转载 作者:行者123 更新时间:2023-12-01 13:20:00 26 4
gpt4 key购买 nike

我有 def.svg 文件,我想将此文件导入到我的 angular 5 组件中。是否可以使用 angular-cli 导入它?如果是,我该如何导入它?或者角度 5 中是否存在任何其他方式?

def.svg:

<svg class="carousel-svg-defs">
<defs>
.....
</defs>
</svg>

最佳答案

试试这个导入 SVG 并内联显示 https://github.com/arkon/ng-inline-svg

安装

npm install --save ng-inline-svg

配置

import { HttpClientModule } from '@angular/common/http';
import { InlineSVGModule } from 'ng-inline-svg';

@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, HttpClientModule, InlineSVGModule.forRoot()],
bootstrap: [AppComponent]
})
class AppModule {}

用法

@Component({
selector: 'app',
template: `
<div class="my-icon" aria-label="My icon" [inlineSVG]="'/img/image.svg'"></div>
`
})
export class AppComponent {}

关于angular5 - Angular 5,将 SVG 文件导入组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50392602/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com