我正在使用Gijgo的Bootstrap 4 TreeView显示类别列表。我有一个字体真棒图标与每个类别相关联。我的树状视图看起来像这样:
$('#tree').tree({
uiLibrary: 'bootstrap4',
dataSource: '@Url.Action("GetCategoriesAndArticles",
"WikiArticles", new { area = "Wiki" })',
primaryKey: 'id',
iconsLibrary: 'fontawesome'
});
在控制器中,我将“ icon”属性设置为一个真棒字体图标,如下所示:
WikiTreeModel tree = new WikiTreeModel();
tree.text = w.WikiCategoryName;
tree.ParentID = 0;
tree.id = w.WikiCategoryID;
tree.icon = w.CategoryIcon;
tree.children = GetNextNodes(w.WikiCategoryID, childCategories, articleList);
returnList.Add(tree);
当树加载时,我看不到任何Font Awesome Icon,并且想知道我做错了什么。我可以放入img,但是我不需要图像。
我查看了Gijgo文档,还用Google搜索了示例。