asp.net mvc 4 アプリでノックアウトを使用しようとしています。これは私のコードがどのように見えるかです。
<script>
var my = my || {}; //creating private namespace to avoid any conflicts other namespaces: my namespace
$(document).ready(function () {
////////////////view model testing////////////////////////////
// Define Main ViewModel; javascript Object Literals
////it is a workaround for moduler JS pattern including revealing js pattren
///it also uses KnockOut. end product ViewModel;
function teammemberModel() {
this.Id = ko.observable();
this.Title = ko.observable();
this.Name = ko.observable();
this.Email = ko.observable();
this.Nationality = ko.observable();
this.Sex = ko.observable();
};
my.viewModel = function () {
var teamMembers = ko.observableArray([]),
loadTeamMembers = function (projectId) {
$.ajax({
type: "GET",
url: "/Project/GetTeamMembers?projectId=" + projectId,
success: function (response) {
my.viewModel.teamMembers.removeAll();
$.each(response.results, function (x, team) {
my.viewModel.teamMembers.push(new teammemberModel()
.Id(team.Id)
.Title(team.Title)
.Name(team.UserName)
.Email(team.Email)
.Nationality(team.Nationality)
.Sex(team.Sex)
);
});
}
});
}
return {
teamMembers: teamMembers,
loadTeamMembers: loadTeamMembers
};
} ();
//Applies KO bindings
ko.applyBindings(my.viewModel);
my.viewModel.loadTeamMembers(6);
///////////////////////////////////////////////////
});
</script>
これは、クライアント側の Knockout ベース ビューモデルのモジュラー JS 実装のサンプルです。私の見解は次のようになります。
<table >
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Status</th>
<th>Created By</th>
<th>Created Date</th>
</tr>
</thead>
<tbody data-bind="foreach: teamMembers">
<tr>
<td data-bind="text: UserName"></td>
<td data-bind="text: Email"></td>
<td data-bind="text: Sex"></td>
<td data-bind="text: Title"></td>
<td data-bind="text: Nationality"></td>
</tr>
</tbody>
</table>
ajax 呼び出しで、json データが teamMembers ko.observableArray にプッシュされていることがわかります。このコードは、従おうとしているチュートリアルに従って機能するはずですが、テーブル内にデータが表示されません。このコードの問題点と、テーブルがここにレンダリングされない理由を教えてください。ありがとう