1

我调用了一个 get 操作方法,其中包含传递给该方法的查询字符串参数列表。其中一些参数有一个管道'|' 在他们中。问题是我不能有带有管道字符的操作方法参数。如何将管道查询字符串参数映射到非管道 C# 参数?还是有其他我不知道的技巧?

4

1 回答 1

2

您可以编写自定义模型绑定器。例如,假设您有以下请求:

/foo/bar?foos=foo1|foo2|foo3&bar=baz

并且您想将此请求绑定到以下操作:

public ActionResult SomeAction(string[] foos, string bar)
{
    ...
}

您所要做的就是编写一个自定义模型绑定器:

public class PipeSeparatedValuesModelBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var values = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        if (values == null)
        {
            return Enumerable.Empty<string>();
        }

        return values.AttemptedValue.Split('|');
    }
}

接着:

public ActionResult SomeAction(
    [ModelBinder(typeof(PipeSeparatedValuesModelBinder))] string[] foos, 
    string bar
)
{
    ...
}
于 2012-09-18T11:27:04.207 回答