typescript 过滤器类别[关闭]时无法显示

o0lyfsai  于 2023-04-22  发布在  TypeScript
关注(0)|答案(2)|浏览(144)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
我想在网上商店中按类别进行过滤。我被Mosh的教程卡住了,因为我在浏览器或命令提示符中没有错误消息,但没有任何过滤或甚至显示。我使用Angular 15
它可以queryParamMap类别,但不能过滤显示对象:

products.component.ts

我想这里的问题是不能读取object:

products.component.html

z31licg0

z31licg01#

MDN Array.prototype.filter()
Array.prototype.filter()返回数组。未更改。
所以你能做到

this.products = this.products.filter(/* ... */)

相关问题