-4

此错误似乎发生在 AutoCompleterMixin.js 中。我无法确定这个问题的原因。我在 google chrome 中运行 Web 应用程序,并检查了脚本中是否存在 AutoCompleterMixin.js 文件。为什么会发生这种情况,我该如何解决?这是截断的代码,似乎是导致问题的原因。

dijit.byId("home").store=new dojo.data.ItemFileReadStore({data:information.list})
4

1 回答 1

0

很抱歉明显缺乏信息。我确实进行了谷歌搜索并找到了相同的信息,即组件可能正在寻找传递 dojo.data 的 dojo.store。答案是在 1.7.2 中需要设置一个 FilteringSelect。

所以,dijit.byId("home").set("x",dojo.data.ItemFileReadStore({data:information.list})

会成功的。

于 2012-05-23T17:09:47.317 回答