以下に示すように、json にある _type など、node_id とともにカスタム クエリ文字列パラメーターを送信したい jQuery を使用しています。
[{
"id":"2",
"label":"Title for folder",
"branch":[],
"inode":true,
"open":false,
"icon":"folder",
"_type":"library"
}]
ajaxhook
以下に示すように試しています
ajaxHook: function (item, settings) {
// the default implementation changes the URL by adding the item ID at the end
alert(this.itemData._type);
settings.url += (item ? this.getId(item) : '');
}
_type
このメソッドを使用してカスタム プロパティを取得できません。