我在 iPhone 中为 UI 使用 dojo。我已经完全复制了 dojo、dojox 文件夹,并且在 Xcode 中编译需要花费大量时间。
如果我只保留所需的 .js 文件可以吗?
例如
require(["dojox/mobile/parser", "dijit/registry", "dojox/mobile", "dojox/mobile/SwapView", "dojox/mobile/TabBar", "dojox/mobile/Button","dojox/mobile/deviceTheme", "dojox/mobile/compat", "dojo/domReady!"],function(parser) {
parser.parse();
});
可以只在 require 函数中包含与上面包含的模块相关的 .js 文件吗?
好心劝告。