gpt4 book ai didi

javascript - 如何使用 angularjs 或 javascript 从数组中获取字符串

转载 作者:行者123 更新时间:2023-11-28 12:14:12 24 4
gpt4 key购买 nike

var array = [
{id: 1, text: "one"},
{id: 2, text: "two"},
{id: 3, text: "three"},
{id: 4, text: "four"},
{id: 5, text: "five"}
];

var name = array.find(function(item){
return item.id == $localStorage.id;
});

返回我{id: 2, text: "two"}预计只有两个字符串,没有其他内容应该打印

最佳答案

可以先找到对象,然后得到text通过检查 find() 是否有属性操作实际上返回了一个对象或者它是 undefined .

var array = [{
id: 1,
text: "one"
},
{
id: 2,
text: "two"
},
{
id: 3,
text: "three"
},
{
id: 4,
text: "four"
},
{
id: 5,
text: "five"
}
];

var findObj = array.find(function(item) {
return item.id == 2;
});
//check if findObj is defined or not
var name = findObj? findObj.text: null;
console.log(name);

您还可以使用解构来获得 text直接从 find() 获取值如果您确定该 localStorage 值存在该对象。否则会报错。

var array = [{
id: 1,
text: "one"
},
{
id: 2,
text: "two"
},
{
id: 3,
text: "three"
},
{
id: 4,
text: "four"
},
{
id: 5,
text: "five"
}
];

var {text} = array.find(function(item) {
return item.id == 2;
});
console.log(text);

关于javascript - 如何使用 angularjs 或 javascript 从数组中获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53060416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com