私は問題があります。ノックアウト.jsでdurandalテンプレートを使用しています。ビューモデルからビューにデータを渡そうとしても、何も起こりません。永続的にロードされていることがわかります。
それが私のビューモデルです:
define(['knockout', 'common/urlconfig', 'plugins/http', 'plugins/router', 'common/userService', 'durandal/app'],
function(ko, urlconfig, http, router, userService, app) {
"use strict";
function article(data) {
this.Id = ko.observable(data.Id);
this.Description = ko.observable(data.Description);
this.Author = ko.observable(data.Author);
this.Tags = ko.observable(data.Tags);
}
// ko.applyBindings(appViewArticles);
return {
articles: articles,
displayName: 'Articles viewer',
showMessage: app.showMessage('it\'s works!'),
Id: Id,
Description: Description,
Author: Author,
Tags: Tags,
activate: function () {
var self = this;
self.articles = ko.observableArray([]);
var promise = $.getJSON("/api/article", function (allData) {
var mappedArticles = $.map(allData, function (i) { return new article(i) });
self.articles(mappedArticles);
});
return promise;
}
};
});
そして私の見解:
<div class="container-fluid">
<div class="row-fluid">
<h2 data-bind="text: 'Welcome, ' + userName() + '!'"></h2>
</div>
<table>
<thead>
<tr><td>ID</td><td>Description</td><td>Author</td><td>Tags</td></tr>
</thead>
<tbody data-bind="foreach: articles">
<tr>
<td data-bind="text: Id"></td>
<td data-bind="text: Description"></td>
<td data-bind="text: Author"></td>
<td data-bind="text: Tags"></td>
</tr>
</tbody>
</table>
</div>
どうしたの?