gpt4 book ai didi

javascript - 简单 Kendo UI 远程数据源返回空

转载 作者:行者123 更新时间:2023-12-02 18:57:11 24 4
gpt4 key购买 nike

这是我尝试构建的一个简单示例作为练习,但我的 DataSource 对象返回时没有数据。

var data = new kendo.data.DataSource({
transport: {
read: {
url: "data.json",
dataType: "json"
}
}
});

console.dir( data );

数据.json

[
{
"text": "Brand One"
},
{
"text": "Brand Two"
},
{
"text": "Brand Three"
},
{
"text": "Brand Four"
}
]

有什么想法吗?

最佳答案

您的代码有两个问题

  1. 首先您需要调用data.read() - 以便执行请求
  2. 由于上述操作是异步操作,因此如果您在使用 data.read() 后立即调用 data.data(),则不会返回任何内容。要等待数据被检索,您将需要使用 requestEnd事件。

关于javascript - 简单 Kendo UI 远程数据源返回空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15216226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com