gpt4 book ai didi

c# - MvcSiteMapProvider : How to load extra web. 站点地图文件来自 MVC 4 中启用 MEF 的模块

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:03 24 4
gpt4 key购买 nike

我在 C# 类库项目中有一个单独的模块,它是通过 MEF 导入加载的。作为将站点地图信息与模块一起使用的初步尝试,我添加了一个带有必要标记的 web.sitemap 文件,但我似乎无法清楚地了解如何加载它并将其附加到 Host MVC 项目内存中的站点地图。

我也尝试过使用 MvcSiteMapNode 属性,但还没有真正实现它。

首先,Attribute 和 SiteMap 哪个方法最容易使用?

其次,任何人都可以为我提供有关如何执行这些操作的指导吗?

我更喜欢使用站点地图文件,因为它应该避免依赖 MEF 模块中的 MvcSiteMapProvider。

最佳答案

您可以将 XML 嵌入到您的模块中,然后通过 MEF 以某种方式导出它们,我很确定这是一个选项。

要从内存加载 XML,您需要使用外部 DI 容器并自己实现 IXmlSource 接口(interface)。

public class MyXmlSource : IXmlSource
{
public XDocument GetXml()
{
// Load the XML from wherever...
}
}

然后 DI 配置只需要换出默认的 XmlSource

var excludeTypes = new Type[] { 
typeof(IXmlSource)
};

// More DI config not shown...

this.For<IXmlSource>()
.Use<MyXmlSource>();

当然,如果您有多个文件,则需要多次注册IXmlSourceXmlSiteMapNodeProviderXmlSiteMapNodeProvider 只能合并根节点下的节点,因此您不能将它们放在 SiteMap 中的任何位置。

XML 和属性是配置 MvcSiteMapProvider 最不灵活的选项。

另一种方法

最灵活的选择是use ISiteMapNodeProvider implementations加载您的配置数据,这也需要一个外部 DI 容器。第二好的选择是使用 dynamic node provider实现,但存在的限制是它们不能包含根节点并且需要 XML 节点或 .NET 属性来托管提供程序。

但是,如果您不想要任何第 3 方依赖项,您将需要一个自定义抽象 (DTO),它在您自己的基础库中定义,通过 MEF 导出,然后由 ISiteMapNodeProviderIDynamicNodeProvider 从抽象中加载数据。

public class SiteMapNodeDto
{
public string Key { get; set; }
public string ParentKey { get; set; }
public string Title { get; set; }
public IDictionary<string, object> RouteValues { get; set; }

// Additional properties...
}

然后拥有某种接口(interface),您的模块可以实现该接口(interface)以提供节点。

public interface IModuleSiteMapNodeProvider
{
IEnumerable<SiteMapNodeDto> GetNodes();
}

我对 MEF 的简短体验是几年前的事了,所以我不记得你是如何导出一个类型并将它导入到其他地方的,所以你需要自己解决这个问题。

然后在您的主应用程序中,您可以创建一个方法,将您的 DTO 转换为 MvcSiteMapProvider 期望的类型(ISiteMapNodeToParentRelationDynamicNode).

public static SiteMapNodeProviderExtensions
{
public static ISiteMapToParentRelation CreateNode(this ISiteMapNodeHelper helper, SiteMapNodeDto dto, string sourceName)
{
string key = helper.CreateNodeKey(
dto.ParentKey,
dto.Key,
dto.Url,
dto.Title,
dto.Area,
dto.Controller,
dto.Action,
dto.HttpMethod,
dto.Clickable);

var nodeParentMap = helper.CreateNode(key, attribute.ParentKey, sourceName);
var node = nodeParentMap.Node;

node.Title = title;

// Populate remaining properties...

return nodeParentMap;
}
}

然后在 ISiteMapNodeProvider 中,您只需为每个节点调用此方法。

public IEnumerable<ISiteMapNodeToParentRelation> GetSiteMapNodes(ISiteMapNodeHelper helper)
{
string sourceName = typeof(SiteMapNodeDto).Name;
IEnumerable<SiteMapNodeDto> dtos = someExternalSource.GetNodes();

foreach (var dto in dtos)
{
yield return helper.CreateNode(dto, sourceName);
}
}

如果您想为您的模块开发人员提供 SiteMap 节点作为一流的功能(并使其真正容易理解节点的层次结构,就像您可以使用 XML 一样),您可以创建一个 Fluent API,以便您可以表达节点在代码中。看看this pull request对于其中一种方法。

关于c# - MvcSiteMapProvider : How to load extra web. 站点地图文件来自 MVC 4 中启用 MEF 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32590700/

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