我正在尝试在php中集成bryntum组件(schedule)。我对ext js了解不多。 请参阅图片here
此处,名称字段正在获取,而容量未访问。这些价值来自Zoho CRM。 我的代码类似于Click,而r-read.php文件是从CRM获取记录并以json格式存储的负责文件。就像
{
"success": true,
"total": 9,
"root": [{
"Id": 1,
"Name": "Sri Test",
"Capicity": "190.0"
}, {
"Id": 2,
"Name": "tester_test01",
"Capicity": "500.0"
}, {
"Id": 3,
"Name": "Tesing room 23",
"Capicity": "5000.0"
}, {
"Id": 4,
"Name": "Test for 6th product",
"Capicity": "5000.0"
}, {
"Id": 5,
"Name": "Banquet hall test-01",
"Capicity": "500.0"
}, {
"Id": 6,
"Name": "test room",
"Capicity": "1000.0"
}, {
"Id": 7,
"Name": "Grande Ballroom",
"Capicity": "4000.0"
}, {
"Id": 8,
"Name": "Cedar Room",
"Capicity": "1400.0"
}, {
"Id": 9,
"Name": "Maple Room",
"Capicity": "1200.0"
}]
}
在容量列中,它将显示如190.0,500.0,5000.0等名称列。
请告诉我你是否清楚。 请帮帮我。
提前致谢。
答案 0 :(得分:0)
我对Bryntum调度程序组件并不熟悉,但大多数情况下,当您遇到类似问题时,因为您没有在模型中定义Capacity
字段。
我看到你使用了以下模型:Sch.model.Resource
。可能只有Name
字段而不是Capacity
吗?您的JSON响应对我来说很好。