0

我正在通过此函数在静态定义的 dojox.mobile.RoundRectList 小部件下动态构建一系列 dojox.mobile.ListItem 小部件......

function displayOpps(items) {

// Create the list container that will hold application names
var rrlOppsContainer = dijit.byId("rrlOpps");   
// Add a new item to the list container for each element in the server respond
for (var i in items){

    // Create and populate the list container with applications' names
    var name = items[i].CustName + " - " + items[i].OppNbr;
    var liOpps = new dojox.mobile.ListItem({
        label: name,
        moveTo: "sv3OppDetail"  
    });

    // Add the newly created item to the list container
    rrlOppsContainer.addChild(liOpps);
}

}

当我在我的 html 文件中的 onLoad() 期间运行此代码时,我使用 Chrome 的开发工具收到以下错误...

未捕获的类型错误:对象 # 没有方法“byId”

我已经阅读了很多关于这个主题的文章,似乎很多人都有这个问题,但我发现的每一篇文章都与其他一些技术(例如 Spring MVC 等)有关,我正在尝试使用它基于 dojox.mobile 的应用程序。也就是说,我试图通过将其包含在我的 html 文件中来模仿其他人提出的一些解决方案,但它仍然无法正常工作......

<script type="text/javascript"
data-dojo-config="isDebug: true, async: true, parseOnLoad: true"
src="dojo/dojo.js">
dojo.require("dojox.mobile.RoundRectList")
</script>

我究竟做错了什么?

提前感谢您的时间和专业知识。

4

1 回答 1

3

如果您使用的是 Dojo 1.7+,您可能只是忘记了需要“dijit/registry”模块。这是定义 byId 函数的地方。当您使用桌面小部件时,这是由其他基本模块间接加载的,但对于 dojox/mobile,您必须显式加载它(因为 dojox/mobile 在默认情况下仅加载非常少的模块集,以最大限度地减少代码占用)。

根据您编写应用程序的方式,执行以下操作:

dojo.require("dijit.registry");  // legacy (pre-1.7) loader syntax
...
var rrlOppsContainer = dijit.byId("rrlOpps");
...

或这个:

require(["dijit/registry", ...], function(registry, ...){ // 1.7+ AMD loader syntax
    ...
    var rrlOppsContainer = registry.byId("rrlOpps");
    ...
});


另请注意,您的第二个代码示例在使用旧版加载器语法时尝试使用异步加载 (async: true)。这不起作用,要获得异步加载,您必须使用 AMD 语法。

于 2012-07-09T07:57:24.363 回答