我有一张来自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"
}
]
我从名称中获取值:
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;
}
}
答案 0 :(得分:0)
尝试:
if (images[0].length){
var firstImageName = images[0].name;
}