我正在使用带有玉的express.js。我在玉模板中有问题。
我的mogodb数据如下
{ _id: 5040465ce0afabce2b000003,
address: 'Sample',
fax: [ '22 212', '34 138' ],
Branch: true,
pic: [ 'photo1.png' ,'photo2.png'],
tel: [ '22 980', '22 439' ],
lat: 29.674292,
Name: 'Branch 1',
ATM: false,
long: 98.210881 },
{ _id: 5040465ce0afabce2b000003,
address: 'Loikaw.',
fax: [ ],
Branch: true,
pic: [ ],
tel: [],
lat: 20.674292,
Name: 'Loikaw Branch',
ATM: false,
long: 98.210881 },
来自我的玉石模板
- obj.forEach(function(item){
tr
td
img(src="/upload/#{item.pic}",width=200)
td #{item.Name}
td #{item.address}
td #{item.ATM}
td #{item.Branch}
td #{item.lat}
td #{item.long}
如何使用pic array
的第一个数组?
我查看了文档https://github.com/visionmedia/jade,它没有包含有关数组的内容。它们只显示迭代和数组。
如果没有图片,我想改为显示其他图片。
是否可以在Jade模板中完成,或者我需要在js端完成?
答案 0 :(得分:2)
- obj.forEach(function(item){
tr
td
- if (item.pic[0] == undefined)
img(src="/images/nopic.png",width=200)
- else
img(src="/upload/#{item.pic[0]}",width=200)
感谢@Ray Toal