传递RoteData以通过mvc模型查看

时间:2016-11-21 18:12:28

标签: c# asp.net asp.net-mvc routedata

我目前正在学习asp.net核心,因此尝试将RouteData添加到我的mvc模型并将其传递给view,但是当我计算数据值的数量(@Model.Data.Count)时,它返回0。我不想在我的视图代码中使用ViewBag或@ViewContext.RouteData.Values[key]

mvc route

app.UseMvc(route =>
        {
            route.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}/{*catchall}");
        });

我的行动方法

public ViewResult List(string id)
    {
        var r = new Result
        {
            Controller = nameof(HomeController),
            Action = nameof(List),
        };

        // var catch=RouteData.Values["catchall"]; this line is working fine
        r.Data["id"] = id ?? "<no value>";
        r.Data["catchall"] = RouteData.Values["catchall"];
        //when I checked r.Data.count it returns 0 even in here
        return View("Result", r);
    }

和我的观点

@model Result
.
.
@foreach (var key in Model.Data.Keys)
    {
        <tr><th>@key :</th><td>@Model.Data[key]</td></tr>
    }

1 个答案:

答案 0 :(得分:1)

只要您拥有Dictionary属性,就不需要自己的ViewData,但每次获得此属性时都应该投放object

public ViewResult List(string id)
    {
        var r = new Result
        {
            Controller = nameof(HomeController),
            Action = nameof(List),
        };

        ViewData["id"] = id ?? "<no value>";
        ViewData["catchall"] = RouteData.Values["catchall"];

        return View("Result", r);
    }

在你的观点上:

<tr><th>id :</th><td>@(int)ViewData["id"]</td></tr>

我认为你有同样的问题 - 你应该施展价值以从object获得它。由于每个对象都有string方法,因此获得.ToSting()属性。