次のコードがあります。
インデックス.cshtml:
@using System.Web.Script.Serialization
@model MvcApplication3.ViewModels.PersonViewModel
<script src="../../Scripts/knockout-2.1.0.js" type="text/javascript"></script>
<!-- This is a *view* - HTML markup that defines the appearance of your UI -->
<form data-bind="submit: save">
<p>First name: <input data-bind="value: firstName" /></p>
<p>Last name: <input data-bind="value: lastName" /></p>
<table>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody data-bind="foreach: activities">
<tr>
<td><input data-bind="value: Name" /></td>
</tr>
</tbody>
</table>
<button type="submit">Submit</button>
</form>
<script type="text/javascript">
var initialData = @Html.Raw(new JavaScriptSerializer().Serialize(Model));
// This is a simple *viewmodel* - JavaScript that defines the data and behavior of your UI
var viewModel = {
firstName : ko.observable(initialData.Person.FirstName),
lastName : ko.observable(initialData.Person.LastName),
activities : ko.observableArray(initialData.Person.Activities),
save: function() {
$.ajax({
type: "POST",
url: "/Home/Index",
data: ko.toJSON(viewModel),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
$("#resultCount").html(data);
}
});
}
}
// Activates knockout.js
ko.applyBindings(viewModel);
</script>
ホームコントローラー:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Ahb.Insite.HerdRegistration.WebUI;
using MvcApplication3.Models;
using MvcApplication3.ViewModels;
namespace MvcApplication3.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
var person = new Person {FirstName = "John", LastName = "Cool"};
person.Activities = new List<Activity> { new Activity { Name = "Skiing" } };
var personViewModel = new PersonViewModel (person);
return View(personViewModel);
}
[HttpPost]
public ActionResult Index(Person person)
{
//Save it
return View();
}
}
}
PersonViewModel:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MvcApplication3.Models;
namespace MvcApplication3.ViewModels
{
public class PersonViewModel
{
public Person Person { get; set; }
}
}
基本的にこれが行うことは、人の名、姓、およびその人が関与しているリスト内の活動の名前の編集可能なテンプレートを提供することです.
そのため、人は personViewModel で送信されます。
ここで変更したいのは、人をポストバックする代わりに、personViewModel 内にその人をポストバックしたいということです。
これを容易にするためにコードを変更する方法を知っている人はいますか?