后台返回的值如果说是图片路径,在表格中需要展示的话,需要在当前列返回拼好的img标签
formatter : function(cellvalue, options,
row) {
return '<img src='+ url_path+ row.coverPath+' style=width:70px;height:100px;>' ;
},
。如果rowdata需要原始的路径路径,可以在列的位置加上
unformat : function(cellvalue, options, cell) {
return $('img', cell).attr('src');}