- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经安装了 MvcSiteMapProvider v4,现在我想动态加载站点地图。我的需求很简单——根据当前登录的用户角色,例如在每个页面请求上加载 XML 站点地图。 AdminSiteMap.xml 和 UserSiteMap.xml
看来这是可以做到的:
所以基本上您需要使用 DI 来实现这一点(矫枉过正恕我直言)。这是否有可能在没有 DI 的情况下完成?
因此,当我使用 ASP Boilerplate ( http://www.aspnetboilerplate.com/ ) 时,我将 CaSTLe Windsor 作为我的 DI。
所以我通过 NuGet 安装了“MvcSiteMapProvider MVC5 Windsor 依赖注入(inject)配置”。但是现在当我运行该应用程序时出现以下错误:
SiteMapLoader 尚未初始化。
Check the 'MvcSiteMapProvider_UseExternalDIContainer' setting in the AppSettings section of web.config.
If the setting is set to 'false', you will need to call the MvcSiteMapProvider.DI.Composer.Compose() method at the end of Application_Start in the Global.asax file. Alternatively, if you are using .NET 4.0 or higher you can install the MvcSiteMapProvider.MVCx NuGet package corresponding to your MVC version.
If the setting is set to 'true', you must set the SiteMaps.Loader property during Application_Start in Global.asax to an instance of the built-in SiteMapLoader type or a custom ISiteMapLoader instance. This can be achieved most easily by using your external DI container.
我没有更改默认配置,并确认在 public class MvcSiteMapProviderInstaller : IWindsorInstaller 中调用了 Install() 方法,因为它在那里遇到了一个断点。
那么我在这里缺少什么来完成这项工作。请记住,我想要做的就是根据每个请求的登录用户加载 SiteMap。
**** 更新 ****
虽然它可能不优雅,但它不需要像实现 DI 容器所建议的那样大量代码。在@ Using Multiple MvcSiteMaps 查看 viggity 的回答(关于第 4 个)
最佳答案
首先,每个用户 1 个 SiteMap 是可能的,但不会很好地扩展 - 事实上它几乎违背了制作 site map 的目的。我不会推荐这种方法,除非你确定你的网站不会有超过几十个并发用户,网站上的页面少于几百个,并且服务器上有大量可用的额外内存。
有更多可扩展的选项可以根据登录的用户使节点可见/不可见。
/Views/Shared/DisplayTemplates/
文件夹中的模板)或 build custom HTML helpers除了来自 SiteMap 实例的链接之外,还可以根据每个用户的请求动态加载链接。这些方法都不需要外部 DI。
推荐的方法是将所有节点加载到每个用户都可能访问的 SiteMap 中,然后使用安全修整使当前用户的节点在 UI 上不可见。您可以使用 SiteMapCacheReleaseAttribute 在数据更改时强制重新加载缓存。制作dynamic nodes将它们添加到数据源后立即在 UI 上可见。
有了这些知识,如果您仍想继续沿着当前路径前进,则说明您安装了错误的 NuGet 包。依赖注入(inject)的工作方式是您的项目中恰好需要 1 个组合根(即 WindsorContainer 的一个实例)。由于您的项目中已有组合根目录,因此您必须为 Windsor 安装 MvcSiteMapProvider modules only 包,然后通过添加几行代码手动将模块添加到 Windsor 配置中。您可以通过在包管理器控制台中运行此命令来降级到仅模块包:
PM> Uninstall-Package MvcSiteMapProvider.MVC5.DI.Windsor
然后,搜索在您的项目中声明 new WindsorContainer()
的位置,并将 MvcSiteMapProvider 模块添加到您的 DI 配置中。
// Create the DI container (typically part of your DI setup already)
var container = new WindsorContainer();
// Your existing DI configuration should typically be here...
// Setup configuration of DI
container.Install(new MvcSiteMapProviderInstaller()); // Required
container.Install(new MvcInstaller()); // Required by MVC. Typically already part of your setup (double check the contents of the module).
// Setup global sitemap loader (required)
MvcSiteMapProvider.SiteMaps.Loader = container.Resolve<ISiteMapLoader>();
// Check all configured .sitemap files to ensure they follow the XSD for MvcSiteMapProvider (optional)
var validator = container.Resolve<ISiteMapXmlValidator>();
validator.ValidateXml(HostingEnvironment.MapPath("~/Mvc.sitemap"));
// Register the Sitemaps routes for search engines (optional)
XmlSiteMapController.RegisterRoutes(RouteTable.Routes);
如果您确保在整个项目范围内只有 1 个 WindsorConntainer 实例并适当添加上面的代码,您应该有一个有效的 DI 配置。
要为每个用户加载 1 个 SiteMap,您需要创建一个自定义 ISiteMapCacheKeyGenerator,它会为每个用户返回不同的字符串。
public class UserSiteMapCacheKeyGenerator
: ISiteMapCacheKeyGenerator
{
public virtual string GenerateKey()
{
var context = HttpContext.Current;
if (context.User.Identity.IsAuthenticated)
{
// Note: the way you retrieve the user name depends on whether you are using
// Windows or Forms authentication
return context.User.Identity.Name;
}
else
{
return "default";
}
}
}
并通过在 /DI/Windsor/Installers/MvcSiteMapProviderInstaller.cs
编辑 Windsor 模块来注入(inject)它。
var excludeTypes = new Type[] {
// Use this array to add types you wish to explicitly exclude from convention-based
// auto-registration. By default all types that either match I[TypeName] = [TypeName] or
// I[TypeName] = [TypeName]Adapter will be automatically wired up as long as they don't
// have the [ExcludeFromAutoRegistrationAttribute].
//
// If you want to override a type that follows the convention, you should add the name
// of either the implementation name or the interface that it inherits to this list and
// add your manual registration code below. This will prevent duplicate registrations
// of the types from occurring.
// Example:
// typeof(SiteMap),
// typeof(SiteMapNodeVisibilityProviderStrategy)
typeof(SiteMapNodeUrlResolver),
typeof(ISiteMapCacheKeyGenerator) // <-- add this line
};
// Code omitted here...
// Add this to the bottom of the module
container.Register(Component.For<ISiteMapCacheKeyGenerator>().ImplementedBy<UserSiteMapCacheKeyGenerator>();
唯一剩下的就是使用 dynamic node providers或 ISiteMapNodeProvider 的实现,以动态地为每个用户提供节点。如上设置的话,可以通过SiteMap.CacheKey属性获取用户名。
public class SomeDynamicNodeProvider : DynamicNodeProviderBase
{
public override IEnumerable<DynamicNode> GetDynamicNodeCollection(ISiteMapNode node)
{
// Get the user name
var user = node.SiteMap.CacheKey;
// Entities would be your entity framework context class
// or repository.
using (var entities = new Entities())
{
// Add the nodes for the current user only
foreach (var story in entities.Stories.Where(x => x.User == user)
{
DynamicNode dynamicNode = new DynamicNode();
dynamicNode.Title = story.Title;
// The key of the node that this node will be the child of.
// This works best if you explicitly set the key property/attribute
// of the parent node.
dynamicNode.ParentKey = "Home";
dynamicNode.Key = "Story_" + story.Id;
dynamicNode.Controller = "Story";
dynamicNode.Action = "Details";
// Add the "id" (or any other custom route values)
dynamicNode.RouteValues.Add("id", story.Id);
yield return dynamicNode;
// If you have child nodes to the current node, you can
// nest them here by setting their ParentKey property to
// the same value as the dynamicNode.Key and returning them
// using yield return.
}
}
}
}
最后,将您的"template"节点添加到您的配置中以加载动态节点。
// Set a key explicitly to attach the dynamic nodes to.
// The key property here corresponds to the ParentKey property of the dynamic node.
<mvcSiteMapNode title="Home" controller="Home" action="Index" key="Home">
// Use a "dummy" node for each dynamic node provider. This node won't be in the SiteMap.
<mvcSiteMapNode dynamicNodeProvider="NamespaceName.SomeDynamicNodeProivder, AssemblyName"/>
</mvcSiteMapNode>
关于c# - 根据用户角色将 XML 站点地图加载到 MvcSiteMapProvider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26541338/
正如标题中所问,我有两个如下结构的 XML 文件 A.xml //here I want to include B.xml
我有一个 xml 文件。根据我的要求,我需要更新空标签,例如我需要更改 to .是否可以像那样更改标签.. 谢谢... 最佳答案 var xmlString=" "; var properStri
我有这样简单的 XML: Song Playing 09:41:18 Frederic Delius Violin Son
在我的工作中,我们有自己的 XML 类来构建 DOM,但我不确定应该如何处理连续的空格? 例如 Hello World 当它被读入 DOM 时,文本节点应该包含 Hello 和 World
我有以下 2 个 xml 文件,我必须通过比较 wd:Task_Name_ID 和 TaskID 的 XML 文件 2。 例如,Main XML File-1 wd:Task_Name_ID 具有以下
我在 Rails 应用程序中有一个 XML View ,需要从另一个文件插入 XML 以进行测试。 我想说“构建器,只需盲目地填充这个字符串,因为它已经是 xml”,但我在文档中看不到这样做的任何内容
我正在重建一些 XML 提要,因此我正在研究何时使用元素以及何时使用带有 XML 的属性。 一些网站说“数据在元素中,元数据在属性中。” 那么,两者有什么区别呢? 让我们以 W3Schools 为例:
在同一个文档中有两个 XML 声明是否是格式正确的 XML? hello 我相信不是,但是我找不到支持我的消息来源。 来自 Extensible Markup Language
我需要在包装器 XML 文档中嵌入任意(语法上有效的)XML 文档。嵌入式文档被视为纯文本,在解析包装文档时不需要可解析。 我知道“CDATA trick”,但如果内部 XML 文档本身包含 CDAT
XML 解析器和 XML 处理器是两个不同的东西吗?他们是两个不同的工作吗? 最佳答案 XML 解析器和 XML 处理器是一样的。它不适用于其他语言。 XML 是通用数据标记语言。解析 XML 文件已
我使用这个 perl 代码从一个文件中读取 XML,然后写入另一个文件(我的完整脚本有添加属性的代码): #!usr/bin/perl -w use strict; use XML::DOM; use
我正在编写一个我了解有限的历史脚本。 对象 A 的类型为 system.xml.xmlelement,我需要将其转换为类型 system.xml.xmldocument 以与对象 B 进行比较(类型
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有一个案例,其中一个 xml 作为输入,另一个 xml 作为输出:我可以选择使用 XSL 和通过 JAXB 进行 Unmarshalling 编码。性能方面,有什么真正的区别吗? 最佳答案 首先,程
我有包含 XML 的 XML,我想使用 JAXB 解析它 qwqweqwezxcasdasd eee 解析器 public static NotificationRequest parse(Strin
xml: mario de2f15d014d40b93578d255e6221fd60 Mario F 23 maria maria
尝试更新 xml 文件数组时出现以下错误。 代码片段: File dir = new File("c:\\XML"); File[] files = dir.listFiles(new Filenam
我怎样才能完成这样的事情: PS /home/nicholas/powershell> PS /home/nicholas/powershell> $date=(Get-Date | ConvertT
我在从 xml 文件中删除节点时遇到一些困难。我发现很多其他人通过各种方式在 powershell 中执行此操作的示例,下面的代码似乎与我见过的许多其他示例相同,但我没有得到所需的行为。 我的目标是将
我是一名优秀的程序员,十分优秀!