“无法在本地主机上找到此页面”-在ASP.NET MVC Core 2.2中添加Area之后

问题描述 投票:0回答:1

我的项目被重建到名为“ area”的文件夹中,之前所有工作均已完成,并且用户已获得帐户管理面板的授权。添加这些区域后,项目看不到应该去的地方。

我的结构项目:

enter image description here

“授权”区域中的结构:

enter image description here

我尝试使用Startup.cs中区域的路由:

...
            services.AddMvc( options =>
            options.EnableEndpointRouting = false)
            .SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
...
            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
                routes.MapAreaRoute(
                    name: "MyAreaAuthorize",
                    areaName: "Authorize",
                    template: "Authorize/{controller=Account}/{action=Index}/{id?}");
                routes.MapAreaRoute(
                    name: "MyAreaManage",
                    areaName: "Authorize",
                    template: "Authorize/{controller=Manage}/{action=Index}/{id?}");
                routes.MapAreaRoute(
                    name: "MyAreaAdminAccount",
                    areaName: "AdminAccount",
                    template: "AdminAccount/{controller=Admin}/{action=Index}/{id?}");
            });

我还将_ViewImports.cshtml复制到了每个区域都有视图的文件夹。

我的文件看起来像这样:

@using Example
@using Example.Models
@using Example.AccountArea.Models
@using Microsoft.AspNetCore.Identity
@addTagHelper Example.TagHelpers.*, Example
@addTagHelper Identity.TagHelpers.*, Identity
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

在“授权”区域中查看

@using Example.AccountArea.Models;
@using Microsoft.AspNetCore.Identity;
@model Example.AccountArea.Models.AccountModel.LoginModel;
@inject SignInManager<UserApp> Sign
@{
    ViewData["Title"] = "Zaloguj się";
}

<form asp-area="Authorize" asp-controller="Account" asp-action="Login" method="post">
                <div asp-validation-summary="ModelOnly" class="text-danger"></div>
                <div>
                    <input asp-for="Email" placeholder="Email" />
                    <span asp-validation-for="Email" class="text-danger margin-text-form"></span>
                </div>
                <div>
                    <input asp-for="Password" placeholder="Hasło" />
                    <span asp-validation-for="Password" class="text-danger margin-text-form"></span>
                </div>
                <div class="group">
                    <div class="checkbox">
                        <input type='checkbox' id='my-checkbox'>
                        <label for='my-checkbox'>@Html.DisplayNameFor(m => m.RememberMe)</label>
                    </div>
                </div>
                <div class="form-group">
                    <button type="submit" class="btn-dark">Login</button>
                </div>
                <div class="group">
                    <p>
                        <a asp-area="Authorize" asp-controller="Account" asp-action="ForgotPassword">Forgot?</a>
                    </p>
                    <p>
                        <a asp-controller="Account" asp-action="Register">Register</a>
                    </p>
                </div>
            </form>
        </section>
</div>

@section Scripts {
    <partial name="_ValidationScriptsPartial" />
}

“授权”区域中的控制者帐户::

控制器已包含属于“授权”区域的类的信息

using System.Text.Encodings.Web;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.UI.Services;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.AspNetCore.Authentication;
using System;
using Example.AccountArea.Models;
using Example.AccountArea.Models.AccountModel;

namespace Example.AccountArea.Controllers
{
    [Area("Authorize")]
    public class AccountController : Controller
    {
        ...My code is irrelevant to the problem...

        [HttpGet]
        [AllowAnonymous]
        public async Task<IActionResult> Login()
        {
            await HttpContext.SignOutAsync(IdentityConstants.ExternalScheme);
            return View();
        }

        [HttpPost]
        [AllowAnonymous]
        [ValidateAntiForgeryToken]
        public async Task<IActionResult> Login(LoginModel login)
        {
            if (ModelState.IsValid)
            {
                var result = await _signInManager.PasswordSignInAsync(login.Email, login.Password, login.RememberMe, false);
                if (result.Succeeded)
                {
                    _logger.LogInformation("...");
                    return RedirectToAction(nameof(ManageController.Index), "Manage");
                }
                if (result.IsLockedOut)
                {
                    _logger.LogWarning("...");
                    return RedirectToAction(nameof(LockoutOptions));
                }
                else
                {
                    ModelState.AddModelError(string.Empty, "...");
                    return View("../Home/Index");
                }
            }

            // If we got this far, something failed, redisplay form
            return View("../Home/Index", login);
        }

        ...My code is irrelevant to the problem...
    }
}

启动应用程序后,向我显示登录表单,链接不起作用,消息类似于以下消息,它不通过数据验证,并且在单击“登录”后显示:]

enter image description here

浏览器上页面的物理转换:

来自登录名

enter image description here

收件人:

enter image description here

[请不要告诉我它是从那里复制的,并且有类似的解决方案,因为我试图先在其他类似的帖子中找到解决方案!

任何想法?谢谢您的帮助。.

我的项目被重建到名为“ area”的文件夹中,之前所有工作均已完成,并且用户已获得帐户管理面板的授权。添加这些区域后,项目无法看到它的位置...

asp.net-mvc asp.net-mvc-areas
1个回答
0
投票

您确实有两个区域路由供您使用不同的默认控制器进行授权...我相信您应该只有一个。虽然不确定这是否是问题的原因。但是我认为这可能会发生冲突,而且看起来也不必要,因为默认情况下,该区域中的任何控制器都将包含在单个路由中。

我的aspnet core 2.2应用程序区域注册看起来像这样:

© www.soinside.com 2019 - 2024. All rights reserved.