19

今のところベータ版のままで RC を手放すことにしたので、強く型付けRedirectToActionされたものが追加されているかどうかはわかりません。誰かがそれを試したことがありますか? RC には強く型付けされたRedirectToAction(そして多分) がありますか?ActionLink

4

4 に答える 4

25

これは、コントローラーの拡張メソッドとしてMVC Contribにも含まれており、ModelState の処理、テストなどのための他の多くの強く型付けされた機能と共に含まれています。

于 2009-12-01T16:26:12.353 に答える
18

いいえ、そうではありません。

protected RedirectToRouteResult RedirectToAction<T>(Expression<Action<T>> action, RouteValueDictionary values) where T : Controller
{
    var body = action.Body as MethodCallExpression;

    if (body == null)
    {
        throw new ArgumentException("Expression must be a method call.");
    }

    if (body.Object != action.Parameters[0])
    {
        throw new ArgumentException("Method call must target lambda argument.");
    }

    string actionName = body.Method.Name;

    var attributes = body.Method.GetCustomAttributes(typeof(ActionNameAttribute), false);
    if (attributes.Length > 0)
    {
        var actionNameAttr = (ActionNameAttribute)attributes[0];
        actionName = actionNameAttr.Name;
    }

    string controllerName = typeof(T).Name;

    if (controllerName.EndsWith("Controller", StringComparison.OrdinalIgnoreCase))
    {
        controllerName = controllerName.Remove(controllerName.Length - 10, 10);
    }

    RouteValueDictionary defaults = LinkBuilder.BuildParameterValuesFromExpression(body) ?? new RouteValueDictionary();

    values = values ?? new RouteValueDictionary();
    values.Add("controller", controllerName);
    values.Add("action", actionName);

    if (defaults != null)
    {
        foreach (var pair in defaults.Where(p => p.Value != null))
        {
            values.Add(pair.Key, pair.Value);
        }
    }

    return new RedirectToRouteResult(values);
}

それはうまくいくはずです。

于 2009-02-08T16:36:44.323 に答える