@Html.Action in Asp.Net Core

后端 未结 9 2134
说谎
说谎 2020-11-27 19:25

Where is @Html.Action in Asp.net Core? I can see @Html.ActionLink but not a direct call to an Action as before.

Was it replaced by ViewComp

9条回答
  •  旧时难觅i
    2020-11-27 19:59

    For Net Core 2.0

    using Microsoft.AspNetCore.Mvc.Infrastructure;
    

    replace

    // var actionSelector = GetServiceOrFail(currentHttpContext); 
    var actionSelector = GetServiceOrFail(currentHttpContext); 
    

    and

    // var actionDescriptor = actionSelector.DecisionTree.Select(routeValues).First(); 
    var actionDescriptor = actionSelector.ActionDescriptors.Items.Where(i => i.RouteValues["Controller"] == controller && i.RouteValues["Action"] == action).First();
    

提交回复
热议问题