2 回答

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超11個(gè)贊
您可以在此處使用數(shù)組.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貢獻(xiàn)1921條經(jīng)驗(yàn) 獲得超9個(gè)贊
您可以使用filter. 注意toLowerCase()用于不區(qū)分大小寫的結(jié)果。
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)
添加回答
舉報(bào)