我们目前有一个使用 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 有没有办法轻松使用这些生成的文件并将它们用作模型?