问题是这样的, 有 两个model, 一个是patient,一个是report, 一个patient可以有 多个report。 从后台发送过来的json数据是这样的:
{"medicalreports":[{"pid":"10","CheckTime":"2015-6-3 10:02:49","medicaladvice":"测试","history":"历史","patient":{"id":"124","name":"刘三"},"communitydoctor":{},"centerdoctor":{"id":"4","name":"center_1"}}],"total":1},主要想取得 medicalreports中的 patient中的name, 在grid中相应列中显示,
我使用的是 ExtJS 4.2.1, 我是按照 ExtJS MVC 开发的, 分为model,store,view,controller,
下面是model截图
下面是 store截图
view层 grid 的 column 就对应上 store 的 patientName就可以了, 所以,我就不贴了
下面是 现在的运行图