简体   繁体   English

Ng-Show如果过滤搜索不为空?

[英]Ng-Show if filtered search is not empty?

I'm currently in the process of creating a live search for my TV Shows web app. 我目前正在为我的电视节目网络应用创建实时搜索。 Everything is working fine. 一切都很好。 What I would like though is, if the filtered search is empty, to not display the <div> My current implementation isn't working though... 我想要的是,如果过滤搜索为空,则不显示<div>我的当前实现不起作用...

Also I would like for it to display something like Please typ to search if a user doesn't enter anything... 此外,我希望它显示类似Please typ to search如果用户没有输入任何东西......

<div ng-controller="SearchController">

    <div ng-show='shows.length > 0'>

        <h3>Shows you've seen:</h3>

        <hr>

        <ul>

            <li ng-repeat="show in shows | filter: searchbar">

                {{ show.name }}
                <img alt="{{ show.name }}" src="img/artwork/{{ show.image_name }}.png" style="width:50px;height:50px;">

            </li>

        </ul>

        <hr>

    </div>

    <div ng-show='allshows.length > 0'>

        <h3>All TV Shows:</h3>

        <hr>

        <ul>

            <li ng-repeat="allshow in allshows | filter: searchbar">

                {{ allshow.name }}
                <img alt="{{ allshow.name }}" src="img/artwork/{{ allshow.image_name }}.png" style="width:50px;height:50px;">

            </li>

        </ul>

        <hr>

    </div>

</div>

==================== After some of the answers, this is what I created from them. ====================在一些答案之后,这就是我从他们那里创造出来的。 Works great now! 现在很棒!

<div ng-controller="SearchController">

    <div ng-hide='searchbar'>

        <h3>Please search something</h3>

    </div>

    <div ng-show='searchbar'>

        <div ng-show="(filtered = (shows | filter:searchbar)).length > 0"> 

            <h3>Shows you've seen:</h3>

            <hr>

            <ul>

                <li ng-repeat="show in filtered">

                    {{ show.name }}
                    <img alt="{{ show.name }}" src="img/artwork/{{ show.image_name }}.png" style="width:50px;height:50px;">

                </li>

            </ul>

            <hr>

        </div>

         <div ng-show="(allfiltered = (allshows | filter:searchbar)).length > 0">

            <h3>All TV Shows:</h3>

            <hr>

            <ul>

                <li ng-repeat="allshow in allfiltered">

                    {{ allshow.name }}
                    <img alt="{{ allshow.name }}" src="img/artwork/{{ allshow.image_name }}.png" style="width:50px;height:50px;">

                </li>

            </ul>

            <hr>

        </div>

    </div>

</div>

You can do 你可以做

<div ng-show="(shows|filter:searchbar).length > 0"> 

// content

</div> 

But this has a performance issue ( using filter multiple times). 但这有性能问题(多次使用过滤器)。 Have a look at this too How to display length of filtered ng-repeat data 也看看这个如何显示过滤的ng-repeat数据的长度

Please see working example http://jsbin.com/nusoc/1/edit 请参阅工作示例http://jsbin.com/nusoc/1/edit

you can crate filterdShows , filteredAllshows in your repeater and use it in ng-show directive ie: 你可以在你的转发器中filterdShowsfilteredAllshows并在ng-show指令中使用它,即:

<div ng-show='filterdShows.length > 0'>

        <h3>Shows you've seen:</h3>

        <hr>

        <ul>

            <li ng-repeat="show in filterdShows = (shows | filter: searchbar)">

                {{ show.name }}
                <img alt="{{ show.name }}" src="img/artwork/{{ show.image_name }}.png" style="width:50px;height:50px;">

            </li>

        </ul>

        <hr>

    </div>

如果我正确理解了这个任务你应该用ng-show='shows.length > 0'替换ng-show='shows.length > 0' ng-show='searchbar'

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM