0

使用 Dojo Mobile 1.7.2,我无法让简单的轮播幻灯片工作。我现在大部分时间都在处理这个问题

基本上,我正在尝试重新创建此示例:-

http://download.dojotoolkit.org/release-1.7.2/dojo-release-1.7.2/dojox/mobile/tests/test_Carousel-slideshow.html

但使用 1.7+ 首选 api(来自http://dojotoolkit.org/reference-guide/1.7/dojox/mobile.html): -

require([
  "dojox/mobile/parser", // (Optional) This mobile app uses declarative programming with fast mobile parser
  "dojox/mobile",        // (Required) This is a mobile app.
  "dojox/mobile/compat"  // (Optional) This mobile app supports running on desktop browsers
], function(parser, mobile, compat){ Optional module aliases that can then be referenced inside callback block
  // Do something with mobile api's.  At this point Dojo Mobile api's are ready for use.
);

我已经使用这种方法管理了所有其他内容,所以不想恢复到 1.7 之前的样式 api,因为这只是倒退......但不幸的是,大多数演示(即使是 1.7.2)仍然使用旧式 api。

任何帮助将非常感激

4

1 回答 1

1

这在 dojo 1.7 中被破坏了。1.8 修复了这个问题。

于 2012-08-29T23:45:26.983 回答