Extjs xml阅读器无法正常工作

时间:2015-06-15 11:41:17

标签: extjs xmlreader

我有以下XML配置......

<?xml version="1.0" encoding="UTF-8"?>
<Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" Namespace="IncidentMgt">
<EntityType Name="in">
<Property Name="persistent_id" Type="Edm.String" Nullable="true" MaxLength="30"/>
<Property Name="active_f" Type="Edm.Int32" Nullable="true"/>
<Property Name="add_property_persids" Type="Edm.String" Nullable="true"/>
<Property Name="add_workflow_persids" Type="Edm.String" Nullable="true"/>
</EntityType>
<EntityType Name="at">
<Property Name="persistent_id" Type="Edm.String" Nullable="true" MaxLength="30"/>
<Property Name="active_f" Type="Edm.Int32" Nullable="true"/>
<Property Name="add_property_persids" Type="Edm.String" Nullable="true"/>
<Property Name="add_workflow_persids" Type="Edm.String" Nullable="true"/>
</EntityType>
</Schema> 

以下是我的XML Reader配置:

reader : {
            type : 'xml',
            record : 'Property',
            rootProperty: 'EntityType',

        }

我的模特:

  

字段:[{name:'Name',mapping:'@ Name'}]

我在加载商店时遇到问题....你能告诉我哪里出错了/我应该在哪里改变这项工作

1 个答案:

答案 0 :(得分:0)

没有剩下的代码,我无法告诉你错误。

以下是使用您提供的数据的working example

将它与您的代码进行比较,也许您可​​以找到问题。