我有几个条目的数组,其中一些具有相同的名称。所有条目都有位置,但一个是空的。我想将相同的位置值保存到同一用户的数组的所有条目中。我怎样才能做到这一点?
array=[{
user: angelos,
user_id: 121212,
date: 12/12/12,
profile_img: cfdf,
text: nhkjhgjtdkghd,
url: g.htm,
location:Romania
},{
user: angelos,
user_id: 121212,
date: 12/12/12,
profile_img: cfdf,
text: nhkjhgjsdfsadstdkghd,
url: g.htm,
location:""
},{
user: Mike,
user_id: 121212,
date: 12/12/12,
profile_img: cfdf,
text: nhkjhgjtdkghd,
url: g.htm,
location:New York
},{
user: Mike,
user_id: 121212,
date: 12/12/12,
profile_img: cfdf,
text: nhkjhgjsdfsadstdkghd,
url: g.htm,
location:""
}];