首先,我尝试从执行此操作的api中获取.png图标,但是由于使用了标记,因此我的浏览器将其呈现为图像,或者即使我想从本地系统导入,也仍然呈现为使用标签的图像文件...
答案 0 :(得分:0)
您可以使用下面提到的解决方案。由于它为Icon创建了一个单独的组件,例如
[ElasticsearchType(Name = "othername", IdProperty = "MyId")]
public class Foo
{
[Text(Store = false, Index = true, IndexOptions = IndexOptions.Docs)]
public Guid MyId { get; set; }
[Date(Format = "mmddyyyy")]
public DateTime Date { get; set; }
[Number(NumberType.Integer, Coerce = true, DocValues = true)]
public int Number { get; set; }
}
更多详细信息Here