我有一个来自 Json 的数组图像:
images=JSON.decode(images);
这是数组值:
[
{
"title": "",
"description": "",
"name": "loc commerciale.jpg"
},
{
"title": "",
"description": "",
"name": "foto2.jpg"
},
{
"title": "",
"description": "",
"name": "foto 1.jpg"
},
{
"title": "",
"description": "",
"name": "a01.jpg"
}
]
我从 name 得到值:
images.each(function(image){
alert(image.name);
});
我只需要获取第一个值名称
像 php :
$images = (array) json_decode($row->images);
$first = true;
foreach ($images as $k => $image) {
if ($first)
{
$firstimage= $image->name;
$first = false;
}
}