gpt4 book ai didi

html - 根据文件扩展名设置图标。 Angular 7

转载 作者:行者123 更新时间:2023-12-03 08:48:31 25 4
gpt4 key购买 nike

我正在使用 Angular 7,并且有一个列表,在其中显示一些带有图标的文档名称。此时,无论什么文档,我都会显示相同的图标,但我有 Excel 文档、pdf、doc、图像等的图标。我想知道是否有一种方法可以根据文档扩展名设置图标.

到目前为止我的情况是这样的: enter image description here

像这样的 html:

<h6 class="list-tittle">
Documentos
</h6>
<div >
<ul class="list-group">
<li *ngFor="let document of documents;" class="list-item"><i class="fa fa-file-pdf-o" style="color:#5cb85c;" aria-hidden="true"></i> {{document}}</li>
</ul>
</div>
<button type="button" class="btn tolowercase">Agregar Documento</button>
<h6 class="list-tittle">
Anexos
</h6>
<div>
<ul class="list-group">
<li *ngFor="let anexo of anexos;" class="list-item"><i class="fa fa-file-excel-o" style="color:#5cb85c;" aria-hidden="true"></i> {{anexo}}</li>
</ul>
</div>
<button type="button" class="btn tolowercase">Agregar Anexo</button>

预期的行为是列表显示如下图标:预期的: enter image description here

感谢任何帮助。

最佳答案

为此你必须做以下事情

1)提取每个文档的扩展名

2) 创建一个包含每种类型的图标类名称的数组

使用下面的例子

.ts

export class AppComponent {
documentList = ["document1.pdf", "document2.xlsx", "document3.jpg"];
iconList = [ // array of icon class list based on type
{ type: "xlsx", icon: "fa fa-file-excel-o" },
{ type: "pdf", icon: "fa fa-file-pdf-o" },
{ type: "jpg", icon: "fa fa-file-image-o" }
];

getFileExtension(filename) { // this will give you icon class name
let ext = filename.split(".").pop();
let obj = this.iconList.filter(row => {
if (row.type === ext) {
return true;
}
});
if (obj.length > 0) {
let icon = obj[0].icon;
return icon;
} else {
return "";
}
}
}

.html

<div *ngFor="let filename of documentList"> 
<i class="{{getFileExtension(filename)}}" style="color:#5cb85c;" aria-hidden="true"></i>
{{filename}}
</div>

工作示例链接

https://stackblitz.com/edit/angular-4bexr3?embed=1&file=src/app/app.component.html

关于html - 根据文件扩展名设置图标。 Angular 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60380718/

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