0

我有一个来自 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;
    }
}
4

1 回答 1

0

尝试:

if (images[0].length){
    var firstImageName = images[0].name;
}
于 2013-08-24T18:57:30.577 回答