Sencha架构师,我有一个表单,我想像这样配置reader
,
Ext.create('Ext.data.JsonReader', {
root : "rows",
model : 'city'
})
在Sencha架构师中,它将添加一对单引号。那么如何配置reader
的<{1}}?
答案 0 :(得分:1)
罗恩
表单面板有一个设置为对象的阅读器配置。编辑该对象并在其后面添加代码:
{
type : 'json',
root : 'rows', // if ExtJS 5, this should be rootProperty: 'rows'
model : 'city'
}
在你做完之后,看起来像这样。