管道来过滤对象数组

时间:2017-09-18 05:14:50

标签: javascript angular angular2-pipe

说我有如下所示的数据:

<rewrite>
            <rules>
                <rule name="Redirect to https" stopProcessing="true">
                    <match url=".*" />
                    <conditions>
                        <add input="{HTTPS}" pattern="off" ignoreCase="true" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
                </rule>
            </rules>
        </rewrite>

我想使用自定义管道过滤我的数据。但过滤器应该不限于某个字段。它应该是动态的。比如,如果我在搜索框中输入“1”,则应显示所有具有1值的值。假设我输入了“盘子”,将显示所有具有盘值的牌。并且说我输入“PLATE1”只会显示1个条目。

我知道这是可能的,但问题是如何在Angular中做到这一点。

0 个答案:

没有答案