ASP.NET 5 IsPost没了?

ASP.NET 5 IsPost gone?

如果 Http 请求是回发,我无法从 razor 视图中看出

在 MVC 5 中我们有 IsPost

但我在 MVC 6 上不起作用

我什至无法在视图中获取 Request 对象

您可以在 ViewContext 上创建一个扩展方法来访问 ViewContext.HttpContext.Request 并检查该方法。可能是这样的:

public static class ViewContextExtensions
{
    public static bool IsPost(this ViewContext viewContext)
    {
        return viewContext.HttpContext.Request.Method == "POST";
    }
}