我已经实现了一个剑道 ui 图像浏览器。我的读取函数以 odata 格式(d.results)返回 json。
imageBrowser: {
messages: {
dropFilesHere: "Drop files here"
},
schema: {
model: {
id: "Id",
fields: {
name: {field: "Name" },
type: { field: "Type" },
size: { field: "Size" }
}
}
},
transport: {
read: {
url: xxx
dataType: "json",
type: "GET",
contentType: "application/json"
}
}
有没有办法处理 odata 格式?因为我认为 imageBrowser 不使用剑道数据源。那么有没有办法将数据解析为简单的 json 格式,或者在某处设置 odata 类型?