我正在接收来自 php 文件的 JSON 输出,其中包含许多对象,如下所示:
[
{ "home_content" : "Nam feugiat sem diam, ut fermentum orci hendrerit sit amet.",
"home_id" : 2,
"home_img" : "tech.png",
"home_title" : "Latest Technologies Development"
},
{ "home_content" : "לורם לורם",
"home_id" : 239,
"home_img" : "http://placehold.it/400",
"home_title" : "שוק פירות וירקות"
},
{ "home_content" : "New Item Content",
"home_id" : 259,
"home_img" : "http://www.placehold.it/100",
"home_title" : "New Home Item"
}
]
在我的应用程序中,我想删除某个对象,有没有办法通过说接收它的位置home_id
?或任何能让我将某个对象与该列表区分开来的东西