【问题标题】:Object reference not set to an instance of an object ViewData["Title"] = "Index";对象引用未设置为对象的实例 ViewData["Title"] = "Index";
【发布时间】:2019-07-15 17:38:39
【问题描述】:

所以我正在尝试使用模式在我的索引页面中创建一个注册剃须刀页面。我导入模态框的大部分表单代码来自现有的外部注册页面。但是,当我启动 mvc 应用程序时,我收到 Object reference not set to an instance of an object 错误。任何帮助,将不胜感激。谢谢!

控制台:

System.NullReferenceException: Object reference not set to an instance of an object.at AspNetCore.Views_Home_Index.ExecuteAsync() in C:\Users\SalvadorSolis\source\repos\AWSCognitoMVC\AWSCognitoMVC\Views\Home\Index.cshtml:line 4

HTML:

@page
@model AWSCognitoMVC.Views.Home.IndexModel
@{
    ViewData["Title"] = "Index";//line 4
}
<h2>@ViewData["Title"]</h2>

型号:

namespace AWSCognitoMVC.Views.Home
{
    [AllowAnonymous]
    public class IndexModel : PageModel
    {
        private readonly SignInManager<CognitoUser> _signInManager;
        private readonly CognitoUserManager<CognitoUser> _userManager;
        private readonly ILogger<IndexModel> _logger;
        private readonly CognitoUserPool _pool;

        public IndexModel(
            UserManager<CognitoUser> userManager,
            SignInManager<CognitoUser> signInManager,
            ILogger<IndexModel> logger,
            CognitoUserPool pool)
        {
        _userManager = userManager as CognitoUserManager<CognitoUser>;
        _signInManager = signInManager;
        _logger = logger;
        _pool = pool;
    }

    [BindProperty]
    public InputModel Input { get; set; }

    public class InputModel
    {
        [Required]
        [EmailAddress]
        [Display(Name = "Email")]
        public string Email { get; set; }

        [Required]
        [StringLength(15, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 10)]
        [Phone]
        [Display(Name = "Phone Number")]
        public string PhoneNumber { get; set; }

        [Required]
        [Display(Name = "User Name")]
        public string UserName { get; set; }

        [Required]
        [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
        [DataType(DataType.Password)]
        [Display(Name = "Password")]
        public string Password { get; set; }

        [DataType(DataType.Password)]
        [Display(Name = "Confirm password")]
        [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
        public string ConfirmPassword { get; set; }
    }
    public void OnGet()
    {
    }

    public async Task<IActionResult> OnPostAsync(string returnUrl = null)
    {
        //Added because users don't usually add in a + in their phone number
        if (!(Input.PhoneNumber.First() == '+'))
        {
            Input.PhoneNumber = "+" + Input.PhoneNumber;
        }
        //Added because users don't usually add in a + in their phone number

        returnUrl = returnUrl ?? Url.Content("~/");
        if (ModelState.IsValid)
        {
            var user = _pool.GetUser(Input.UserName);

            user.Attributes.Add(CognitoAttributesConstants.Email, Input.Email);
            user.Attributes.Add(CognitoAttributesConstants.PreferredUsername, Input.UserName);
            user.Attributes.Add(CognitoAttributesConstants.PhoneNumber, Input.PhoneNumber);

            var result = await _userManager.CreateAsync(user, Input.Password);
            if (result.Succeeded)
            {
                _logger.LogInformation("User created a new account with password.");

                await _signInManager.SignInAsync(user, isPersistent: false);

                return RedirectToPage("./ConfirmAccount");
            }
            foreach (var error in result.Errors)
            {
                ModelState.AddModelError(string.Empty, error.Description);
            }
        }
        return Page();
    }
}
}

HomeController:

namespace AWSCognitoMVC.Controllers
{
    public class HomeController : Controller
    {
        public IActionResult Index()
        {
            return View();
        }

        public IActionResult Privacy()
        {
            return View();
        }

        [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
        public IActionResult Error()
        {
            return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
        }
    }
}

注意:原始寄存器模型没有定义“标题”,并且工作正常。

【问题讨论】:

标签: c# asp.net-core asp.net-core-mvc razor-pages


【解决方案1】:

您正在尝试将控制器和视图方法与剃须刀页面混合使用。只是不要这样做。如果您想使用剃须刀页面,请在项目的根目录中创建 Pages 文件夹并在那里创建您的剃须刀页面。如果您想通过/home/index url 显示剃须刀页面的视图,请在Pages 文件夹中创建Home 文件夹并在那里添加您的IndexModel

Pages\Home\Index.cshtml

阅读更多in the docs

【讨论】:

    【解决方案2】:

    ViewData 是将数据从 PageModel 传递到内容页面的容器。

    所以我想以这种方式在 PageModel 端设置数据是有意义的:

    public class IndexModel : PageModel
    {
        [ViewData]
        public string Title{ get; set; }
    
        public void OnGet()
        {
            Title = "Index";
        }
    
        // ...
    }
    

    然后就这样得到它:

    <h2>@ViewData["Title"]</h2>
    

    【讨论】:

    • 谢谢,但即使使用此代码,同一行仍会出现相同的错误。
    • 项目本身有问题。如果您从头开始创建一个新项目,您能否重现该错误?
    • 是的,我在发布之前就这样做了,但没有运气。
    • @SalS 您能否与我们分享一个可以重现您的问题的演示?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-03-20
    相关资源
    最近更新 更多