我有一个应用程序试图在使用 dojo 的 Worklight 5.0.6 混合应用程序中使用 dojox.calendar.Calendar。我已将 calendar-layer.js.compressed.js 添加到我的 build-dojo.xml 文件中,用于复制和 dojo.resources.layers。
<patternset id="dojo.resources.layers">
<include name="dojo/dojo.js.compressed.js"/>
<include name="dojo/core-web-layer.js.compressed.js"/>
<include name="dojo/calendar-layer.js.compressed.js"/>
</patternset>
<copy todir="${build.dir}">
<fileset dir="${dojo.root}">
<include name="dojo/mobile-compat-layer.js.compressed.js"/>
<include name="dojo/mobile-ui-layer.js.compressed.js"/>
<include name="dojo/calendar-layer.js.compressed.js"/>
</fileset>
<mapper refid="dojo.resources.mapper"/>
</copy>
在我的主 html 文件中,我包含了日历图层。
<body id="content" style="display: none">
<script src="js/initOptions.js"></script>
<script src="js/bobCAT.js"></script>
<script src="js/messages.js"></script>
<script src="dojo/calendar-layer.js"></script>
使用丰富的 html 编辑器,我将 Palette 中的日历 Dojox Widget 添加到一个简单的对话框中。
<div data-dojo-type="dojox.mobile.SimpleDialog" id="select-week-dialog">
<div data-dojo-type="dojox.mobile.Heading"
data-dojo-props="label:'Select Week'"></div>
<div id="select-week-dialog-calendar" data-dojo-type="dojox.calendar.Calendar"></div>
<div align=center>
<button id="select-week-dialog-ok" data-dojo-type="dojox.mobile.Button" style="width:100%;height:40px">OK</button>
<button id="select-week-dialog-cancel" data-dojo-type="dojox.mobile.Button" style="width:100%;height:40px">Cancel</button>
</div>
</div>
当我构建然后启动应用程序。我在控制台中看到以下内容。
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8090/apps/services/preview/bobCAT/iphone/1.0/default/dojox/calendar/Calendar.js
任何帮助都将受到极大的欢迎。