4

编写表单以在 ASP.NET MVC 中提交一些数据的最佳方法是什么?是不是像Scott Guthrie在这里展示的那样?有更好的方法吗?也许更少使用字符串?

替代文字

4

1 回答 1

2

我不太喜欢代码中的字符串,因为它无法重构。一个不错的方法是使用 Linq 表达式。如果您将模型作为 ViewData 传递,则可以使用以下语句:

<%= ShowDropDownBox(viewData => viewData.Name); %>
...

public static string ShowDropDownList<T>(this HtmlHelper html, Expression<Action<T>> property)
{
    var body = action.Body as MethodCallExpression;
    if (body == null)
        throw new InvalidOperationException("Expression must be a method call.");
    if (body.Object != action.Parameters[0])
        throw new InvalidOperationException("Method call must target lambda argument.");
    string propertyName = body.Method.Name;
    string typeName = typeof(T).Name;

    // now you can call the original method
    html.Select(propertyName, ... );
}

我知道原来的解决方案执行得更快,但我认为这个更干净。

希望这可以帮助!

于 2008-08-20T19:47:21.250 回答