我正在尝试熟悉Hot Towel SPA模板。我想在阅读Ryan Vanderpol的this article后实现内联编辑。
现在我对如何将“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模板?
感谢您的帮助。
答案 0 :(得分:2)
本周我们在使用内联模板时遇到了同样的问题。看起来Durandal与内联模板不兼容。
我们的解决方案是使用外部模板,存储在主文件旁边的文件中,然后使用以下行调用它们:
<!-- ko compose: { view: 'path/' + templateToUse + '.html', model: yourModel } -->
可能不优雅,但至少它正在发挥作用。
让我知道它是否解决了你的问题:)