gpt4 book ai didi

c# - 创建多个模型时出现 MVC 问题

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:57 24 4
gpt4 key购买 nike

<分区>

使用 .net 核心、MVC、C#

我创建了一个包含 2 个独立模型的模型。代码如下:

public abstract class ViewModelBase
{
public string Environment { get; set; }
}

public class CombinedViewModel : ViewModelBase
{
public FirstViewModel FirstViewModel { get;set;}
public SecondViewModel SecondViewModel { get; set; }
}

public class FirstViewModel : ViewModelBase
{
public string FirstName{ get;set;}
public string LastName{ get; set; }
}

public class SecondViewModel : ViewModelBase
{
public string Mode { get;set;}
}

这是我的 MVC Controller :

public IActionResult Index(string environment, string mode)
{
var model = new CombinedViewModel ();
model.Environment = environment;
model.SecondViewModel.Mode = mode;
return View(model);
}

我搜索过这是初始化多个模型的方法。不确定我在这里做错了什么,但我收到以下错误:

An unhandled exception occurred while processing the request.

NullReferenceException: Object reference not set to an instance of an object.

model.SecondViewModel.Mode = mode;

我需要分别初始化我的第一个和第二个模型吗?请注意,我还没有在我的 View 中使用我的“模式”。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com