判断图片是否有值去显示图片或不显示
注意:图片img 的属性alt一定不能有值,不然你写值就是src属性没值也会显示alt里的内容
用三元表达式直接判断是否为空就行了
// 注意这里是es6模板字符串写法${}
<img ${item.imageUrl? `src="${item.imageUrl}"` : ''} class='images' alt="">
let result = objResult.pResult
console.log('result==',result,result[0])
let strResult = ''
result.forEach((item,idx) => {
let str = `
<tr>
<td style='color: blue;cursor: pointer;' class='brand brand_${idx}'>${item.brand}</td>
<td>${item.source}</td>
<td>${item.status}</td>
<td>${item.holder}</td>
<td>${item.holderCountry}</td>
<td>${item.numberId}</td>
<td>${item.appDate}</td>
<td>${item.niceCl}</td>
<td>
<img ${item.imageUrl? `src="${item.imageUrl}"` : ''} class='images' alt="">
</td>
</tr>
`
strResult += str
})