gpt4 book ai didi

c# - 在自定义 IValueProvider ASP.NET MVC 5.2.3 中获取 List 的值

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:26 25 4
gpt4 key购买 nike

在为这个问题苦苦挣扎了将近 2 天之后,我决定来这里问这个问题 - 我会尽我所能尽可能清楚。

首先,我想做的事情非常简单:实现一个自定义 IValueProvider,它在 ASP.NET MVC Controller 中解密一个 Action 的参数——这部分已经完成,并且运行良好;当我在操作参数中有一个列表时,我的问题就开始了,因为我无法从请求上下文中准确获取该列表的值。

让我们一步一步来。

首先,我有一个属性来装饰所需的操作:

public class EncryptedQueryStringValuesAttribute : FilterAttribute, IAuthorizationFilter
{
/// <summary>
/// Called when authorization is required.
/// </summary>
/// <param name="filterContext">The filter context.</param>
public void OnAuthorization(AuthorizationContext filterContext)
{
filterContext.Controller.ValueProvider = new EncryptedQueryStringValuesProvider(
filterContext.RequestContext, filterContext.ActionDescriptor);
}
}

接下来,我有值提供者构造函数,我在其中初始化我需要的东西:

public EncryptedQueryStringValuesProvider(RequestContext requestContext, ActionDescriptor actionDescriptor)
{
this.requestContext = requestContext;
this.actionDescriptor = actionDescriptor;

this.prefixContainer =
new Lazy<PrefixContainer>(
() => new PrefixContainer(this.requestContext.HttpContext.Request.Params.AllKeys), true);
}

作为旁注,prefixContainer 真的很有魅力——如果我检查容器中是否有前缀,无论前缀类型如何,它都能正常工作(这意味着参数是否为一个集合或一个简单的参数)。

在值提供者中检查参数是否存在是这样完成的:

public bool ContainsPrefix(string prefix)
{
return this.prefixContainer.Value.ContainsPrefix(prefix);
}

正如我所说 - 这给了我正确的值。

现在,丑陋的部分来了 - GetValue 方法:

public ValueProviderResult GetValue(string key)
{
string[] rawValue = this.requestContext.HttpContext.Request.Params.GetValues(key);
string attemptedValue = this.requestContext.HttpContext.Request.Params[key];
return new ValueProviderResult(rawValue, attemptedValue, CultureInfo.CurrentCulture);
}

现在提取的 rawValue 是 null 并且是 null 是合乎逻辑的,因为在我的请求中没有具有该名称的键 - 我所拥有的只是一个这样的集合:

[25]: "SupplierInvoices[x].PaymentToInvoiceExchangeRate"
[26]: "SupplierInvoices[x].AmountToPayOnGivenInvoice"
[27]: "SupplierInvoices[x].OpenInvoiceId"
[28]: "SupplierInvoices[x].OpenInvoiceTimestamp"

另一方面,我完全知道我必须使用 this.prefixContainer.Value.GetKeysFromPrefix(prefix); 构造来获取我请求中的所有键和基于在此基础上,以某种方式加入这些键并将它们返回给 ValueProviderResult,但不知道如何做! :-)

拜托,有人可以解释如何连接这些值以便传递回 ValueProviderResult 以便正确解释吗?

谢谢!

最佳答案

在过去几周与这个问题作斗争之后,我决定我应该改变方法,尽量不要重新发明轮子。首先,我应该放弃所有与收集处理相关的东西以及所有这些东西——所以所有关于 this.prefixContainer 的东西都应该去掉——如果我在 HTTPContext 中找不到简单的键,我不应该处理它并将其留给其他提供者。

这里又出现了另一个问题——我如何“告诉”我的值(value)提供者“放手”一个 key ???最初我认为,如果我在 ContainsPrefix 方法中返回 false,处理将切换到队列中的下一个 IValueProvider - 事实并非如此 - ContainsPrefix 方法应该返回 null 并且不止于此,GetValue 方法应该返回 null,只有在这种情况下,处理才会转到下一个 IValueProvider

好的 - 现在我已经准备好了所有这些东西,我如何在没有全局注册的 ValueProviderFactory 的情况下使用我的值提供者,因为正如我所说,处理仅针对操作进行具有给定属性的“签名”。答案是这样的 - 而不是在 Controller 中使用属性代码实例化自定义 ValueProvider,如下所示:

filterContext.Controller.ValueProvider = new EncryptedQueryStringValuesProvider(filterContext.RequestContext, filterContext.ActionDescriptor);

我必须将我的值(value)提供者添加到列表的顶部:

ValueProviderCollection valueProviderCollection = filterContext.Controller.ValueProvider as ValueProviderCollection;
if (valueProviderCollection == null)
throw new NullReferenceException("filterContext.Controller.ValueProvider as ValueProviderCollection");

valueProviderCollection.Insert(0, new EncryptedQueryStringValuesProvider(filterContext.RequestContext, filterContext.ActionDescriptor));

希望对大家有所帮助。 :-)

关于c# - 在自定义 IValueProvider ASP.NET MVC 5.2.3 中获取 List<T> 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36451610/

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