2 回答
TA贡献1786条经验 获得超11个赞
您可以在此处使用数组.filter()方法,例如:
var data = [{quote_id:1,quote:"I am not in danger, Skyler. I am the danger!",author:"Walter White",series:"Breaking Bad"},{quote_id:2,quote:"Stay out of my territory.",author:"Walter White",series:"Breaking Bad"},{quote_id:3,quote:"IFT",author:"Skyler White",series:"Breaking Bad"},{quote_id:4,quote:"I watched Jane die. I was there. And I watched her die. I watched her overdose and choke to death. I could have saved her. But I didn’t.",author:"Walter White",series:"Breaking Bad"},{quote_id:5,quote:"Say my name.",author:"Walter White",series:"Breaking Bad"}];
var res = data.filter(d => d.author === 'Walter White')
console.log( res )
.as-console-wrapper { max-height: 100% !important; top: 0; }
TA贡献1921条经验 获得超9个赞
您可以使用filter. 注意toLowerCase()用于不区分大小写的结果。
const filterKey = 'walter white';
let data = [{
"quote_id": 1,
"quote": "I am not in danger, Skyler. I am the danger!",
"author": "Walter White",
"series": "Breaking Bad"
}, {
"quote_id": 2,
"quote": "Stay out of my territory.",
"author": "Walter White",
"series": "Breaking Bad"
}, {
"quote_id": 3,
"quote": "IFT",
"author": "Skyler White",
"series": "Breaking Bad"
}, {
"quote_id": 4,
"quote": "I watched Jane die. I was there. And I watched her die. I watched her overdose and choke to death. I could have saved her. But I didn’t.",
"author": "Walter White",
"series": "Breaking Bad"
}, {
"quote_id": 5,
"quote": "Say my name.",
"author": "Walter White",
"series": "Breaking Bad"
}].filter(item => item.author.trim().toLowerCase() === filterKey);
console.log(data)
添加回答
举报