ストアとモデルを使用してネストリストを作成したかったのです。model.jsと同様に、私のストアは別のファイルにあります。
amfPHP => 2を使用していることに注意してください!
ストアを「store:App.stores.eventStore」と呼ぶと、次のエラーが発生します。
Uncaught TypeError:未定義のプロパティ'eventStore'を読み取ることができません
私の店のコードはこれです:
App.stores.eventStore = new Ext.data.TreeStore({
model: 'Events',
proxy: {
type: 'ajax',
params: JSON.stringify(
{serviceName: 'EventService',
methodName: 'getEvents'}),
url: 'http://localhost/amfphp/Amfphp/?contentType=application/json',
reader: {
type: 'tree',
root: 'items'
}
}
});
私の間違いは何ですか?
(EventService.phpは正しく実行されており、amfphpのゲートウェイブラウザーでテストされています)
事前にthx!