我们目前有一个带有JSON的.NET WCF Web服务作为响应和请求格式。对于每个构建,我们为每个被序列化/反序列化的实体生成并发布JSON Schema文件(通过JSON.NET)。
如果您从未见过JSON Schema文件,则它们采用以下格式:
{
"type": "object",
"properties": {
"Id": {
"required": true,
"type": "integer"
},
"Name": {
"required": true,
"type": [
"string",
"null"
]
},
"Email": {
"required": true,
"type": [
"string",
"null"
]
}
}
}
Sencha Touch是否有办法轻松使用这些生成的文件并将其用作模型?