gpt4 book ai didi

c# - Asp.Net MVC-Viewmodel空值

转载 作者:行者123 更新时间:2023-12-03 10:31:47 24 4
gpt4 key购买 nike

我制作了一个webapp,您可以在其中按客户端ID搜索,然后在该客户端上添加订单。索引操作方法将所选客户端分配给 View 模型(vm.AllClients)。订单表当然包含有关客户的信息。在Insert方法中,我想使用有关所选客户端的信息,但是现在vm.AllClients返回null。

在调试过程中,vm.AllClients会在第一种方法运行期间按照需要填充一个客户端对象。当第二种方法正在运行时,vm.AllClients为空。

我试图将搜索字符串另存为变量,然后在db中找到它(不是一个好的解决方案),但是在第二个方法运行期间,该变量也为空。还尝试将所选客户端另存为viewmodel中的Client对象,仍然没有骰子。

添加 Controller

using MainWeb.Models;

public class AddController : Controller
{
OrderEntities db = new OrderEntities();// New instance of db.
ViewModel vm = new ViewModel();//New instance of viewmodel


[HttpPost]
public ActionResult Index(string searchTerm)
{
if (string.IsNullOrEmpty(searchTerm))
{
vm.AllClients = new List<Client>();
}
else
{
vm.AllClients = db.Clients.Where(x =>
x.RefNo.ToString().Equals(searchTerm)).ToList();

foreach (Client client in vm.AllClients)
{
vm.ThisClient = client;//Attempt at a different solution
break;
}

}
return View(vm);
}


public ActionResult InsertOrder(FormCollection form)
{
Order order = new Order();

order.ClientID = vm.AllClients[0].ID;//Here is where the error gets thrown
return RedirectToAction("Index");
}

看法
@model MainWeb.Models.ViewModel

<div class="card border-primary mb-3 card-client" style="max-width: 40rem;">
<div class="card-header">Legg til</div>
<div class="card-body">
<div class="editor-label">
<table>
@using (Html.BeginForm("Test", "Add", FormMethod.Post))
{
<tr>
<td>@Html.Label("Velg Prosjekt:")</td>
</tr>
<tr>
<td>
@Html.DropDownList("fromDBProjects", (IEnumerable<SelectListItem>)ViewData["DBProjects"], new { @class = "form-control" })
</td>
</tr>
<tr>
<td>@Html.Label("Velg Produkt:")</td>
</tr>
<tr>
<td>
@Html.DropDownList("fromDBProducts", (IEnumerable<SelectListItem>)ViewData["DBProducts"], new { @class = "form-control" })
</td>
</tr>
<tr>
<td>@Html.Label("Pris:")</td>
</tr>
<tr>
<td><input type="submit" value="Submit" class="btn btn-primary" id="btn-search" /></td>
</tr>
}
</table>
</div>
</div>
</div>
</div>
}

View 模型
namespace MainWeb.Models
{
public class ViewModel
{
public List<Client> AllClients { get; set; }
public Client ThisClient { get; set; }

}
}

错误:
Object reference not set to an instance of an object

最佳答案

每个请求都会获得一个新的 Controller 实例,因此您不能使用全局Viewmodel变量。如果要在 Controller Action 之间进行通信,请使用ViewData对象或将数据发送到客户端,然后通过FormCollectionViewModel类获取数据。

关于c# - Asp.Net MVC-Viewmodel空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57767846/

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