我想通過從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的
和IM試圖把一個變量裏面玉
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)
}
控制檯日誌打印未定義
這是爲什麼?我怎樣才能從客戶端正確地得到數據庫的信息? tnx全部
你的問題還不夠清楚。你想達到什麼目的? – Max
我想把對象數組隱藏在輸入中隱藏「imagenes」 – andrescabana86