- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我正在做一个网络应用程序,遇到了一个新的挑战,我已经坚持了几周。我将提供有关我的应用程序和数据模型的背景信息,以及所需的最终结果。
基本应用信息和问题背景:我的应用程序旨在用作景观承包商可以用来帮助管理其业务运营的工具。我的应用程序将提供一个他们可以创建帐户的地方,然后输入他们所有的客户信息(“客户”数据模型),以及他们为每个客户所做的工作的信息(“工作”数据模型) .客户和作业之间存在一对多的关系(一个客户可以有多个作业,但对于任何给定的作业只能有一个客户)。
背景:我有两个简单的数据模型,“Client”和“Job”。我的应用程序是在 ASP.net MVC3 框架中构建的。使用 Entity Framework 脚手架机制,我为每个数据模型(创建、读取、更新、删除)创建了基本的 CRUD View 。这在很大程度上非常好(我可以创建新的客户和工作,并很容易地编辑现有的)。
业务问题:我需要允许在我的应用程序中为新工作批量创建。我希望我的用户(景观承包商)能够输入他们当天完成的所有割草工作。因此,我希望我对这个过程的看法用所有活跃的客户填充一个表——每个客户在行旁边都有一个复选框。然后我希望用户能够为他们为每个客户做新工作(修剪他们的草坪)选中复选框,并提交表格(输入完成的工作),结果将为这些客户中的每一个创建新工作.
技术问题:我最好的猜测是我需要在 Controller 中创建一个自定义 ViewModel 并将其发送到 View ,其中 ViewModel 将是基于当前事件客户端创建的新作业列表。然后在 View 中,复选框可以将 Client_ID(客户端的唯一标识符)作为它们的值(这将是 ViewModel 的一部分。当用户提交表单时, View 会将 ViewModel 传回 Controller 。然后是 Controller 可以遍历 ViewModel 作业列表并为选中复选框的每个 ViewModel 作业创建一个新作业。
所以,我的问题是 - 如何使用 Controller 执行以下操作:1.) 根据客户端列表(“客户端”数据模型)中的数据在运行时构建 ViewModel 作业列表?2.) 我怎样才能把它传递给 View ?3.) 一旦它返回到 Controller ,我如何遍历列表并相应地修改我的其他数据模型(创建新的“作业”项)?
我创建了自定义 ViewModel,其中包含构建新工作条目所需的客户和工作的属性(客户名称、客户地址、客户 ID、工作说明、工作人员、工作人员人数、工作时间、用于指示的复选框完成等)。假设用户有 50 个客户,他为这些客户修剪草坪,这些客户是活跃客户。我想构建一个包含 50 行的 ViewModel(代表每个可能需要修剪草坪的客户)。然后我想将其发送到 View 并使用复选框显示它,这表明草坪是否被切割。当模型返回到 View 时, Controller 将获取带有复选框的行,并在该表中创建新的“作业”行。
提前感谢您提供的任何帮助,我知道这对你们中的许多人来说可能很容易。我是 C# 和 MVC3 的新手。
更新:这是我的代码-
工作模式
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations;
namespace LawnTracker.Models
{
public class Job
{
[Key]
public int Job_ID { get; set; }
public int Client_ID { get; set; }
public int Account_ID { get; set; }
public string Name { get; set; }
public string Location { get; set; }
public string Notes { get; set; }
public string SvcRoute { get; set; }
public string Service { get; set; }
public string Date { get; set; }
public double SvcPriceOverride { get; set; }
public float SvcQty { get; set; }
public string UofM { get; set; }
public bool Invoiced { get; set; }
public string Crew { get; set; }
public int TechCount { get; set; }
public string TimeStart { get; set; }
public string TimeFinish { get; set; }
public double TimeSpent { get; set; }
public string Image1 { get; set; }
public string Image2 { get; set; }
public string Image3 { get; set; }
public double MulchUsed { get; set; }
public double FertUsed { get; set; }
public double HerbUsed { get; set; }
public string NextDue { get; set; }
}
}
我的 MowingJobViewModel 模型 -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace LawnTracker.Models
{
public class MowingJobViewModel
{
public int Client_ID { get; set; }
public bool Completed { get; set; }
public string Name { get; set; }
public string Street { get; set; }
public string City { get; set; }
public double SvcPriceOverride { get; set; }
public string UofM { get; set; }
public int SvcQty { get; set; }
public string Notes { get; set; }
public string Date { get; set; }
public string Crew { get; set; }
public int TechCount { get; set; }
public string SvcRoute { get; set; }
public string Schedule { get; set; }
}
}
还有我的 JobController -
// GET: /Job/CreateMowing
public ActionResult CreateMowing(string route = "", string sched = "")
{
List<SelectListItem> listItems = new List<SelectListItem>();
listItems.Add(new SelectListItem()
{
Value = "Lump Sum",
Text = "Lump Sum"
});
listItems.Add(new SelectListItem()
{
Value = "Hours",
Text = "Hours"
});
ViewBag.Units = new SelectList(listItems, "Value", "Text");
ViewBag.Routes = db.Clients.Select(r => r.SvcRoute).Distinct();
ViewBag.Sched = db.Clients.Select(r => r.MowSched).Distinct();
var model = from r in db.Clients
orderby r.SvcRoute
where (r.Mowing == true) &&
(r.Status == "Active") &&
(r.SvcRoute == route || (route == "")) &&
(r.MowSched == sched || (sched == ""))
select r;
if (model.Count() > 0)
{
ViewBag.total = model.Select(r => r.MowPrice).Sum();
}
else
{
ViewBag.total = 0.00;
}
/* Build a list of MowingJobViewModel objects based on the above defined list of clients
* who are subscribed to mowing and active. This will enable batch entry for new jobs done.
* This list of MowingJobViewModel objects will be sent to the client after a HTTP GET
* request for the CreateMowing view. The user will be able to check boxes associated
* with each client in the client list. When the form is submitted, the controller
* receives the model back with the updated information (completed, notes, etc.) about
* each job. Then the controller must update the jobs table, adding the new jobs based on
* the view model returned from the view / client.
*
*/
//Create a new list of MowingJobViewModel objects
IEnumerable<MowingJobViewModel> mjList = new List<MowingJobViewModel>();
//iterate through the list of clients built from earlier (in model)...
foreach (var item in model)
{
//create new MowingJobViewModel object MJ and add it to the list
mjList.Add(new MowingJobViewModel()
{
Client_ID = item.Client_ID,
Completed = false,
Name = (item.FirstName + " " + item.LastName),
Street = item.Address1,
City = item.City,
SvcPriceOverride = item.MowPrice,
UofM = "Lump Sum",
SvcQty = 1,
Notes = "",
Date = "",
Crew = "",
TechCount = 2,
SvcRoute = item.SvcRoute,
Schedule = item.MowSched,
});
}
return View(mjList);
}
**I don't have my view ("CreateMowing.cshtml") worked out correctly, but here is what I have-**
@model IEnumerable<LawnTracker.Models.MowingJobViewModel>
@{
ViewBag.Title = "Enter Mowing Jobs";
}
<h2>Enter Mowing Jobs</h2>
<div style="float: left; clear:both; width: 100%;">
<b>Total Jobs: @Html.Encode(Model.Count())</b><br />
<b>Total Revenue: $@Html.Encode(ViewBag.total)</b><br /><br />
</div>
<p></p>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
<div style="float: right; clear:both; width: 100%;">
@using (Html.BeginForm("CreateMowing", "Job", FormMethod.Get))
{
<table>
<tr>
<th></th>
<th>
Route
</th>
<th>Schedule</th>
<th></th>
</tr>
<tr>
<td>
Show:
</td>
<td>
@Html.DropDownList("route", new SelectList(ViewBag.Routes), "--ALL--")
</td>
<td>
@Html.DropDownList("sched", new SelectList(ViewBag.Sched), "--ALL--")
</td>
<td>
<input type="submit" value="Filter" />
</td>
</tr>
</table><br /><br />
}
</div>
<table>
<tr>
<th>
Completed
</th>
<th>
First Name
</th>
<th>
Last Name
</th>
<th>
Street
</th>
<th>
City
</th>
<th>
Service Route
</th>
<th>
Price
</th>
<th>
Units
</th>
<th>
Qty
</th>
<th>
Notes
</th>
<th>
Schedule
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
<input type="checkbox" name="invoiced" value="@item.Client_ID" >
</td>
<td>
@Html.DisplayFor(modelItem => item.FirstName)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Address1)
</td>
<td>
@Html.DisplayFor(modelItem => item.City)
</td>
<td>
@Html.DisplayFor(modelItem => item.SvcRoute)
</td>
<td>
@Html.DisplayFor(modelItem => item.MowPrice)
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
@Html.DisplayFor(modelItem => item.MowSched)
</td>
</tr>
}
</table>
<div>
<br />
@Html.ActionLink("Back to List", "Index")
</div>
最佳答案
您已经创建了一个 View 模型,其中包含创建作业时特定客户端的显示属性/数据输入字段。既然你没有给它起名字,我就叫它NewJobEntry
.如您所料,您现在需要一个具有 List<NewJobEntry>
类型属性的 View 模型表示可以同时创建的可变数量的新工作。
您的 Controller 将填充列表,添加一个 NewJobEntry
每个客户端的实例。
当提供包含列表的模型时,您的 View 可以枚举列表并为每个 NewJobEntry
生成一行.
一旦数据回发到您的 Controller ,默认的 ASP.NET MVC 绑定(bind)程序就可以处理列表,但存在一些问题。只要字段名称具有顺序索引,默认 Binder 将自动合并列表中的对象。为确保正确生成这些索引,您需要在具有顺序索引的 View 中使用 lambda 表达式进行绑定(bind):
Html.CheckboxFor(model => model.JobList[i].IsSelected)
您可以考虑使用 for
循环而不是 foreach
枚举列表时循环。
您还必须小心复选框,因为未选中的复选框实际上不会出现在发送到 Controller 的发布数据中。这将打破绑定(bind),因为在发布数据中发送的索引可能不再是连续的(只要有未选中的复选框就会有间隙)。因此,我建议您为客户端 ID 添加一个隐藏字段。这样一来,帖子数据将始终包含至少一个字段,其中每个列表条目都有适当的顺序索引。
Html.HiddenFor(model => model.JobList[i].ClientId)
现在您的帖子数据将类似于:
JobList_0_IsSelected=true
JobList_0_ClientId=12345
JobList_1_ClientId=12346
JobList_2_IsSelected=true
JobList_2_ClientId=12347
默认 Binder 将处理此问题并重建您的列表。请注意,如果没有客户端 ID 的隐藏字段,索引 1
将会丢失,并且默认 Binder 将无法正确重建列表。
希望对您有所帮助!
关于c# - 如何在运行时根据现有数据模型中的数据构建自定义的动态 ViewModel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13373052/
Glenn Block 和我一直在研究 ViewModel 模式。我们一直在尝试找出与该模式相关的最大痛点,目标是添加框架支持以减轻痛苦。 今晚,格伦发帖,“View Model” – the mov
如果我使用 Views 创建 ViewModel 实例且 ViewModel 没有对 View 的引用的方法,我不知道创建 viewmodel 关系的正确方法是什么。 假设我们有 ChildView
当从缓存中重新加载 ViewModel 时,我需要能够拦截框架并执行重新初始化。由于没有重新创建 ViewModel,我既不能使用 Init()、MvxViewModel.InitFromBundle
我的业务模型(实际上它用于使用 Entity Framework 6 读取数据)看起来像: class Profile : NameDescriptionBase { public virtu
我在swift中玩MVVM遇到了这种情况:我为 tableView 创建了模型,其中包含对象列表和对象计数。有点像 class TableViewViewModel { var count :
我正在研究由以下部分组成的应用程序区域: Explorer - 包含 TreeView PropertyInspector - 包含一个 PropertyGrid 编辑器 - 包含一个 Explore
我正在使用 MVVM-Light,并且我有一个列出了销售人员的 DataGrid 工作。用户可以双击打开一个子窗口,该窗口将在网格上列出他们的销售,用户将能够在该网格下填写一些文本框以添加新的销售。
是否有适当的方法来创建包含 subViewModel 的 C#/WPF ViewModel ? 目标是: 我有一个主窗口。该窗口用于读取/创建图像。窗口上有一个按钮,可以在 2 个 UserContr
首先,如果这很简单,我必须道歉。我对 WPF 和 MVVM 非常陌生,我想确保我没有违反任何 WPF 或 MVVM 概念。此外,对于下面的冗长解释(试图提供所有细节): 我目前正在引用具有所有业务逻辑
我有一个架构问题,以及一个我想提出意见的可能解决方案。 我习惯于 WP7 的 MVVM 架构(尽可能但不幸的是,有时 sdk 似乎朝着相反的方向发展)。 WP7 强制采用 ViewFirst 方法,我
鉴于以下情况: ViewModelA 启动 ViewModelB(当然,通过一个通用 Controller ,它使用 Ioc 和 DI 来解析所需的类型)。 ViewModelB 需要在 ViewMo
在我的 WPF MVVM 应用程序中,使用 Caliburn.Micro,我有一个 ViewModel,CreateServiceViewModel,在单击按钮时,它会在单独的窗口中打开一个 Grid
假设我有一个采用特定 ViewModel 的页面( View ): @model IEnumerable 在这个页面中,我有一个通过另一个 ViewModel(我们称之为 PostModel)发布数据
我有两个相似的 ViewModel,我需要将一个转换为另一个。 这是第一个: using System; using System.Collections.Generic; using System.
我有两个 View 共享来自某个 View 模型的一个可观察集合,但具有不同的 Collection View 参数。在 MVVM Light 中实现它的正确方法是什么?是否支持非静态虚拟机?我如何管
我有 2 个 View 模型 - 主视图模型** 存储 View 模型 StorageViewModel.kt class StorageViewModel @ViewModelInject cons
我有一个 AddressesViewModel 保存用户最喜欢的地址,另一个 SearchViewModel 保存搜索到的地址。当用户搜索地址时,我必须通过检查收藏夹数组来检查该地址是否是收藏夹。正确
首先,我看过this post并没有找到我的问题的答案。 我不确定这是否是汇总 型号 类或聚合 查看型号 类,但这就是我所拥有的: 在我的 WPF(使用 Prism)应用程序中,我有一个 View “
我的 View 中有这些过滤器,它们都会更新 FilterViewModel,然后由它负责过滤数据。其中一个 View ,SearchAddressView 需要 PlacemarkViewModel
依赖的 ViewModel 通过构造函数(IoC 容器)注入(inject)。 示例:ProductSelectionViewModel 使用 ShoppingBasketViewModel。 这是一
我是一名优秀的程序员,十分优秀!