0

这是我用来显示来自 JSON 的详细信息的代码,除了图像之外的所有详细信息都正确显示。当我尝试显示图像时,它没有显示在图像中。

JSON方法

    Ext.Ajax.request({
    url:  App.gvars.apiurl + 'ShowItemsByItemID/userID='+App.gvars.userid+'/itemID='+itemID, // url : this.getUrl(),
    method: "GET",
    useDefaultXhrHeader: false,
    withCredentials: true,
    success: function (response) {
        var respObj = Ext.JSON.decode(response.responseText);
        Ext.getCmp('myitemname').setValue(respObj[0].itemName);
        Ext.getCmp('myitemdesc').setValue(respObj[0].itemDesc);
        Ext.getCmp('myitemprice').setValue(respObj[0].itemPrice);
        Ext.getCmp('myshopurl').setValue(respObj[0].itemAddress);
        Ext.getCmp('myproductpic').setValue(respObj[0].itemImage);  //Here the image getting       
    },
    failure: function (response) {
        alert(response.responseText);
    }
    });

这里是小组

  {
    xtype: 'panel',
    height:'100px',
    docked: 'bottom',
    html:'<div align="center" style="padding-top:30px;"><img src="resources/img/icon1.png" id="myproductpic" />&nbsp;&nbsp;&nbsp;&nbsp;<img src="resources/img/icon2.png" id="myimglocation" /></div>'
  }     

如何在“myproductpic”区域显示base64转换后的图像。请帮我解决

4

1 回答 1

1
Ext.getCmp() works only for sencha touch components, here you should use 

document.getElementById()

还要设置源中的数据类型

document.getElementById('myproductpic').src = "data:image/jpeg;base64,"+respObj[0].itemImage;
于 2013-09-16T10:18:34.127 回答