1

我需要将以下 URL 路由到控制器:

  1. /de/flight-伦敦
  2. /de/flight-圣彼得堡

在 Global.asax 中定义的正确 URL-Mapping-String 是什么?

我努力了:

  1. "{countrycode}/{keyword}-{destination}" -> 适合 1 但不适合 2
  2. "{countrycode}/{keyword}-{*destination}" -> 例外!

我希望有一个人可以帮助我。

4

2 回答 2

1

/de/flight-st-petersburg由于已知错误而无法正常工作。您有 2 个选项:

  1. 用斜杠分隔关键字和目标:{countrycode}/{keyword}/{destination}
  2. 使用模型绑定器,如下所示:

.

class CustomIdentifier {

   public const string Pattern = @"(.+?)-(.+)";
   static readonly Regex Regex = new Regex(Pattern);

   public string Keyword { get; private set; }
   public string Value { get; private set; }

   public static CustomIdentifier Parse(string identifier) {

      if (identifier == null) throw new ArgumentNullException("identifier");

      Match match = Regex.Match(identifier);

      if (!match.Success)
         throw new ArgumentException("identifier is invalid.", "identifier");

      return new CustomIdentifier {
         Keyword = match.Groups[1].Value,
         Value = match.Groups[2].Value
      };
   }
}

class CustomIdentifierModelBinder : IModelBinder {

   public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) {
      return CustomIdentifier.Parse(
         (string)bindingContext.ValueProvider.GetValue(bindingContext.ModelName).RawValue
      );
   }
}

然后在 Application_Start 上注册它:

void RegisterModelBinders(ModelBinderDictionary binders) {
   binders.Add(typeof(CustomIdentifier), new CustomIdentifierModelBinder());
}

使用以下路线:

routes.MapRoute(null, "{countryCode}/{id}",
   new { },
   new { id = CustomIdentifier.Pattern });

而你的行动:

public ActionResult Flight(CustomIdentifier id) {

}
于 2013-07-02T16:23:54.307 回答
0

路线部分由斜杠分隔,因此您需要使用我相信的:

{countrycode}/{keyword}/{*destination}
于 2013-07-02T15:52:41.240 回答