私の拡張 Ext.data.TreeStore から:
proxy: {
type: 'ajax',
api: {
read: "/GetTree.json",
update: "/SetTree.aspx?username=user1"
},
reader: {
type: 'json',
root: 'children'
},
listeners: {
exception: function (proxy, response, options) {
// error case
console.log('Exception in Portlets store proxy...');
console.log(response);
}
}
},
私が理解しようとしているのは、そのユーザー データを使用して aspx ページを処理username=user1
できるように、どのように動的にすることができるかということです。user2
TreeStore.sync()
パラメータを渡すことができるかどうか、またはその方法がわかりません。
アップデート:
ここで私が本当に求めているのは、更新されたレコードだけでなく、ツリー構造全体を JSON 文字列として保存する機能です。渡す必要がある JSON 文字列を作成できますが、実際にその情報を自分のSetTree.aspx
ページに取得する方法がわかりません。