Sencha架构师,我有一个表单以及如何配置它的`reader`?

时间:2015-06-16 13:08:38

标签: extjs

Sencha架构师,我有一个表单,我想像这样配置reader

   Ext.create('Ext.data.JsonReader', {
       root : "rows", 
       model : 'city'
   })

在Sencha架构师中,它将添加一对单引号。那么如何配置reader的<{1}}?

1 个答案:

答案 0 :(得分:1)

罗恩

表单面板有一个设置为对象的阅读器配置。编辑该对象并在其后面添加代码:

{
   type : 'json',
   root : 'rows', // if ExtJS 5, this should be rootProperty: 'rows'
   model : 'city'
}

在你做完之后,看起来像这样。

FormPanel with Custom Reader