다음과 같이 다차원 배열을 가지고 있습니다 (유효한 JSON으로 PHP 출력). JSON 데이터 저장소를 통해 Ext에 링크했습니다. 이 배열의 발췌 버전 :Ext 4에 데이터 저장소 하위 배열 값을 사용하여 데이터 격자를 만드는 방법은 무엇입니까?
$data = array(
"user"=>array(
"details"=>array(
"first_name"=>"John",
"last_name"=>"Doe",
"birthday"=>"03/21/1982"
),
"campaigns"=>array(
array(
"id"=>"19283",
"name"=>"Great Campaign One",
"status"=>3
),
array(
"id"=>"59433",
"name"=>"Great Campaign Two",
"status"=>1
)
),
"notifications"=>array(
array(
"id"=>"32143",
"subject"=>"This is a message for you",
"summary"=>"You need to do this and this...",
"read"=>0,
"status"=>3
),
array(
"id"=>"54324",
"subject"=>"New Message too",
"summary"=>"More info for a great typer...",
"read"=>1,
"status"=>5
)
)
)
);
내가 서버 호출을 최소화하고자하기 때문에, 내가 한 번이 기록을 호출 한 후 (등 세부 사항, 알림, 캠페인) 하위 배열에 접근하고 싶습니다 내 앱 전체에서 별도의 데이터 그리드가 필요합니다. 각 하위 어레이마다 별도의 저장소가 필요합니까? 또는 하나의 상점을 사용하여 그리드 및 Tpl에서 직접 액세스 할 수 있습니까?
감사합니다.