我有这个代码,应该显示一个h4,表示如果搜索查询与任何字符串不匹配,则没有产品。我现在有这个奇怪的错误,我的文字没有显示。它在html和css(控制台)中可用,并且在我点击一个带有click()绑定的元素或在css(控制台)中编辑颜色后工作。有谁知道这可能是什么以及我如何解决这个问题,尝试了很多东西,但似乎没有任何帮助?
我是这样添加的 - >
<h4 ng-show="filteredItems.length == 0" class="explanation">We found no products</h4>
CSS
h4 {
color: #ccc;
text-align: center;
padding: 100px 20px;
}
搜索
$scope.searchItem = function( query ) {
foundItems = [];
query.toLowerCase();
if( searchTimeout )
$timeout.cancel( searchTimeout );
searchTimeout = $timeout( function() {
for( var i = 0; i < $scope.items.length; i++ ) {
if( $scope.items[i].name.toLowerCase().indexOf( query ) > -1 )
foundItems.push( $scope.items[i] );
}
$scope.filteredItems = foundItems;
}, 400);
}
修改的
// fill with dummy data
$scope.define = function() {
var random;
for( var i = 0; i < 114; i++ ) {
random = Math.floor(Math.random() * 6) + 1;
var text;
switch( random ) {
case 1:
text = 'Double espresso';
break;
case 2:
text = 'Frappuccino cookie crumble chocolate'
break;
case 3:
text = 'Cappuccino'
break;
case 4:
text = 'Very Berry Hibiscus Starbucks Refreshers™ Beverage'
break;
case 5:
text = 'Clover® Brewed Coffee Coffee Traveler'
break;
case 6:
text = 'Featured Dark Roast'
break;
default:
text = 'Not defined'
}
$scope.data.items.push( { name: text, image: random } );
}
// THIS LINE CAUSES THE PROBLEM ( uncommented everything works )
//$scope.data.filteredItems = $scope.data.items;
}
$scope.define();
答案 0 :(得分:0)
试试这个plnkr。我让它运行并做我认为你想要的事情。我总是在前面加上任何范围值,即$scope.data.query
,而不仅仅是$scope.query
。这有助于防止视图尝试在其范围内使用值而不是控制器的范围。
此外,由于您使用的是ng-model,我没有看到将值从视图传递给控制器的原因,因为控制器已经拥有它。这就是为什么ng-change现在只调用searchItems()