items: [{ xtype : 'hidden', name : 'isTemplate', id : 'isTemplateId', bind : { value : '{editRecordInstance.id}' } },{ xtype: 'box', width: 150, height: 100, autoEl: { tag: 'img', src: '{editRecordInstance.attachments}', onclick:"Ext.GlobalEvents.fireEvent('imageOnclick', this);" } }]
在上面的 items 中,第一个'{editRecordInstance.id}'在页面能获取正确的值,但第二个在页面还是显示'{editRecordInstance.attachments}',这到底是什么原因?我哪里写的不正确吗?