Sencha Touch可以使用JSON.NET生成的JSON Schema定义吗?

时间:2012-10-22 17:17:22

标签: .net wcf sencha-touch sencha-touch-2 json.net

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

1 个答案:

答案 0 :(得分:0)

您可以编写自己的数据读取器。因此,您可以解析和转换所需的每个数据。

data.reader api docs (sencha touch 2)