我的想法是点击左侧导航栏上的任意按钮,只要logos对象中点击按钮的名称与projects中items对象中的任何名称匹配,则显示这些对象。当我点击左侧的任意按钮时,我会将该对象的active属性转换为logos对象中的true。过滤值后,我可以在控制台中看到所有正确的值,但我无法循环遍历它们 - 使用for循环或map。奇怪的是,当我写入filteredValues[0]时,我能够将这些数据输出
2020-05-13
如何根据数组中的流派项过滤电影标题?const result = [{title: "Mad Max: Fury Road",genre: ["Action", "Adventure", "Sci-Fi"],},{title: "The Hunger Games: Mockingjay Part 1",genre: ["Adventure", "Thriller"],},{title: "Jura
2022-06-19