【发布时间】:2014-12-13 10:27:35
【问题描述】:
我正在尝试在我的 AngularJS 应用程序中实现智能表模块。与其他一些相比,我更喜欢这个,主要是因为其他似乎在我的控制器中需要大量样板代码,而且我喜欢让我的控制器尽可能干燥。但我对其他无需样板即可完成相同任务的模块持开放态度。
它在处理直接的对象数组时效果很好,但如果其中一些对象具有嵌套对象,则过滤和排序会出现奇怪的行为。
这需要一些解释,所以请耐心等待。
首先,这是我的嵌套对象数组(此处为便于阅读而缩短):
$scope.products = [
{
'display': 'Live',
'name': 'LC1D09',
'category': 'Motor Control',
'subcategory': 'Contactor',
'manufacturer': 'Telemecanique',
'specs': {
'phase': 3,
'poles': 3
},
'new': {
'price': 158.95
},
'refurbished': {
'price': 145
},
'onlineStores': {
'amazon': true,
'ebay': false
},
'isCool': true
},
{
'display': 'Pending',
'name': 'FA32020',
'category': 'Circuit Breaker',
'subcategory': 'Molded Case',
'manufacturer': 'Square D',
'specs': {
'phase': 1,
'poles': 2
},
'new': {
'price': 217.79
},
'refurbished': {
'price': 192.82
},
'onlineStores': {
'amazon': true,
'ebay': true
},
'isCool': false
}
];
$scope.displayedProducts = $scope.products;
这是我的 HTML:
<table st-table="displayedProducts" st-safe-src="products" class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th st-sort="name">Name</th>
<th st-sort="category">Category</th>
<th>Subcategory</th>
<th>Manufacturer</th>
<th>New Price</th>
<th>Refurb. Price</th>
<th>Display</th>
<th>Specs</th>
<th>Cool</th>
</tr>
<tr>
<th><input st-search="'name'" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="'category'" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="'subcategory'" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="'manufacturer'" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="new.price" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="refurbished.price" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="'display'" placeholder="" class="input-sm form-control" type="search"/></th>
<th><input st-search="'specs'" placeholder="" class="input-sm form-control" type="search"/></th>
<th>
<select st-search="onlineStores.ebay" class="form-control">
<option value=""></option>
<option value="true">Yes</option>
<option value="false">No</option>
</select>
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="product in displayedProducts">
<td>{{product.name}}</td>
<td>{{product.category}}</td>
<td>{{product.subcategory}}</td>
<td>{{product.manufacturer}}</td>
<td>${{product.new.price | number : 0}}</td>
<td>${{product.refurbished.price | number : 0}}</td>
<td>{{product.display}}</td>
<td>{{product.specs}}</td>
<td>{{product.onlineStores.ebay}}</td>
</tr>
</tbody>
</table>
所以如果我的数组没有嵌套对象,这一切都可以正常工作。但是对于嵌套对象(例如st-search="new.price",我会遇到以下问题(参见屏幕截图):
- 有时当我在“嵌套对象”搜索字段中输入文本时,所有其他也具有嵌套对象的字段都会继承相同的值(但过滤仍然可以正常工作)。这并不总是这样做,只是有时......
- 嵌套对象的布尔值计算不正确。
True将显示所有记录,但False将仅显示值为False的记录。
还有其他人想出如何处理嵌套对象和智能表模块吗?
【问题讨论】:
-
搜索 API 不支持嵌套属性,但您可以使用自定义过滤器功能,而不是角度过滤器过滤器。更多详情请参考github上的issue
-
嗨 Joao,您找到解决此问题的方法了吗?
标签: javascript angularjs smart-table