我正在尝试熟悉 Hot Towel SPA 模板。在阅读了 Ryan Vanderpol 的这篇文章后,我想实现内联编辑。
现在,对于如何将“text/html”类型的脚本块插入到部分内容中,我感到很茫然。
这就是我在视图部分中的内容(注意里面的两个脚本块)。
<section>
<h2 class="page-title" data-bind="text: title"></h2>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Company Name</th>
<th>Last Name</th>
<th>First Name</th>
<th style="width: 50px; text-align:right;" />
</tr>
</thead>
<tbody data-bind=" template: { name: templateToUse, foreach: customers }"></tbody>
</table>
<script id="readTemplate" type="text/html">
<tr>
<td data-bind='value: CustomerID' ></td>
<td data-bind='value: CompanyName' ></td>
<td data-bind='value: LastName' ></td>
<td data-bind='value: FirstName' ></td>
<td class="buttons">
<a class="btn" data-bind="click: edit" href="#" title="edit"><i class="icon-edit"></i></a>
<a class="btn" data-bind="click: removeCustomer" href="#" title="remove"><i class="icon-remove"></i></a>
</td>
</tr>
</script>
<script id="editTemplate" type="text/html">
<tr>
<td><input data-bind='value: CustomerID' /></td>
<td><input data-bind='value: CompanyName' /></td>
<td><input data-bind='value: LastName' /></td>
<td><input data-bind='value: FirstName' /></td>
<td class="buttons">
<a class="btn btn-success" data-bind="click: save" href="#" title="save"><i class="icon-ok"></i></a>
<a class="btn" data-bind="click: cancel" href="#" title="cancel"><i class="icon-trash"></i></a>
</td>
</tr>
</script>
</section>
这是我的视图模型。
define(['services/logger'], function (logger) {
function Customer(data) {
var self = this;
self.CustomerID = ko.observable(data.CustomerID);
self.CompanyName = ko.observable(data.CompanyName);
self.LastName = ko.observable(data.LastName);
self.FirstName = ko.observable(data.FirstName);
};
function ViewModel() {
var self = this;
self.title = 'Customers';
self.customers = ko.observableArray([]);
self.selectedItem = ko.observable();
self.edit = function (item) {
self.selectedItem(item);
};
self.cancel = function () {
self.selectedItem(null);
};
self.removeCustomer = function (customer) {
// Code for deleting row
}
self.save = function () {
// Code for saving changes
};
self.templateToUse = function (item) {
return self.selectedItem() === item ? 'editTemplate' : 'readTemplate';
};
}
var vm = new ViewModel();
return vm;
});
当我运行该应用程序时,在 Chrome 中调试它时出现“找不到 ID 为 readTemplate 的模板”的错误消息。
如何在 Hot Towel 中实现我的 html 模板?
谢谢你的帮助。