列表條目我不能找到和解決方案如何動態地添加通過另一個視圖模型一個ViewModel進入編輯視圖多數民衆贊成加載。ASP.Net MVC視圖模型包含的List <anotherViewModel>動態添加了anotherViewModel
可以說我有一個ViewModel這就是包含anotherViewModel的名單。
數據庫模型:
public class ViewModel
{
public ViewModel()
{
anotherViewModel= new List<anotherViewModel>();
}
public string idViewModel{ get; set; }
public string description{ get; set; }
public List<anotherViewModel> aViewModel { get; set; }
}
用戶加載編輯視圖含有視圖模型,當前具有2個entrys型anotherViewModel的。
用戶應該從anotherViewModel entrys添加到視圖模型類型anotherViewModel的另一個入口,甚至更改其屬性的可能性。
另一個ViewModel處於局部視圖。我嘗試用ajax重新加載它,如果我這樣做,在當前模型中所做的更改將丟失。因爲我無法將模型交給控制器。
我知道必須有一些解決方案與jQuery,但我無法找到一個。
感謝您的幫助。