我想将一组对象从 mongodb 传递给客户端...
这是对象
var objeto_img=
{
name:'name of the file',
image:'image.jpg url',
title:'title of the image',
caption:'descripcion of the image',
link:"#",
};
在某些配置文件中,有很多图像,所以是这样的对象数组
[var objeto_img=
{
name:'name of the file',
image:'image.jpg url',
title:'title of the image',
caption:'descripcion of the image',
link:"#",
},var objeto_img=
{
name:'name of the file',
image:'image.jpg url',
title:'title of the image',
caption:'descripcion of the image',
link:"#",
},var objeto_img=
{
name:'name of the file',
image:'image.jpg url',
title:'title of the image',
caption:'descripcion of the image',
link:"#",
};]
这是服务器代码
res.render('index/perfil_publicacion_contenido',
{
datos:datosRecibidos
})
datosRecibidos 是来自 mongodb 的对象数组
我试图在玉里面放一个变量
input(type='hidden',id='imagenes',value=datos.img)
但是当我尝试获取对象时
var fotos=$('#imagenes1').val();
for(foto in fotos)
{
console.log(fotos[foto].image)
console.log(fotos[foto].name)
console.log(fotos[foto].caption)
console.log(fotos[foto].title)
}
控制台日志打印未定义
这是为什么???我怎样才能在客户端正确地从 db 获取信息???全部