作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个模型:
var ProductModel = function(productid, productname, producttypeid, productprice) {
var self = this;
self.ProductId = productid;
self.ProductName = productname;
self.ProductTypeId = producttypeid;
self.ProductPrice = productprice;
}
和
var ProductTypeModel= function(producttypeid, producttypename) {
var self = this;
self.ProductTypeId = producttypeid;
self.ProductTypeName = producttypename;
}
我在 View 模型中使用它们:
var ProductViewModel = function() {
var self = this;
self.ProductList = ko.observableArray([]);
self.ProductTypeList = ko.observableArray([]);
//...init 2 array and some misc methods
}
在 html 文件中:
...
<table>
<thead>
<tr>
<th>Id</th>
<th>Type</th>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody data-bind="template: { name: 'row', foreach: ProductList }">
</tbody>
</table>
...
<script id="row" type="html/template">
<tr>
<td data-bind="html: ProductId"></td>
<td data-bind="html: ProductName"></td>
<td data-bind="html: ProductTypeId"></td> <!-- I stuck here!!! -->
<td data-bind="html: ProductPrice"></td>
</tr>
</script>
...
我希望我的表显示 ProductTypeName 而不是 ProductTypeId,但我无法将 ProductTypeId 传递到任何函数以获取 ProductTypeName。
最佳答案
var ProductViewModel = function() {
var self = this;
self.ProductList = ko.observableArray([]);
self.ProductTypeList = ko.observableArray([]);
//...init 2 array and some misc methods
self.getProductTypeName = function (productTypeId) {
var typeId = ko.unwrap(productTypeId),
found = ko.utils.arrayFirst(self.ProductTypeList(), function (productType) {
return ko.unwrap(productType.ProductTypeId) === typeId;
});
return found ? ko.unwrap(found.ProductTypeName) : null;
};
};
和
<script id="row" type="html/template">
<tr>
<td data-bind="html: ProductId"></td>
<td data-bind="html: ProductName"></td>
<td data-bind="html: $root.getProductTypeName(ProductTypeId)"></td>
<td data-bind="html: ProductPrice"></td>
</tr>
</script>
关于Knockout.js - 如何在两个数组之间交叉引用对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29757118/
我是一名优秀的程序员,十分优秀!