剑道网格中,如果图像字段为空,如何显示默认图像?
作者:互联网
如果图像字段为null,我想显示默认图像.这是我的图像字段代码.
{ field: "Photo",
title: "Photo",
template: '<img src="#= Photo #" alt="image" width="80px" height="80px" />',
width: 100
}
解决方法:
尝试这个
{
field: "Photo",
title: "Photo",
template: function(dataItem) {
return kendo.template(
'<img src="#= Photo #" alt="image" width="80px" height="80px" />'
)({Photo: dataItem.Photo || 'http://path-to-image'});
}
width: 100
}
此dataItem.Proto || ‘http:// path-to-image’表示如果Photo伪造(null,false,0,”,undefined),则使用默认路径
标签:kendo-ui,kendo-grid,javascript,jquery 来源: https://codeday.me/bug/20191120/2046252.html