首先从数据库获取信息到前端,接收数据要用store,你把图片的路径写入数据库中,然后通过store去load数据到前端。
然后要看你要怎么展示图片,在哪显示了!
例如使用Ext.XTemplate,自己去写图片显示的位置,样式等。可以去参考ext3.0文档中Ext.DataView的例子
var store = new Ext.data.JsonStore( {
fields : [ "id", "name", "path" ],
url: '....',
......
});
store.load();
var tpl = new Ext.XTemplate('
使用全局ID 唯一命名法是最有效果的,
LoadData("remind!list.action",function(u){
...
{
xtype : 'displayfield',
html : ''
},{
xtype : 'box',
width : 14, // 图片宽度
height : 14, // 图片高度
autoEl : {
tag : 'img',
style : 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);',
src : u.picpath // '/QMS/images/delete.jpg'
}}
...
}