我想同步附加 YUI 模块。
Given the YUI modules are already on the page
When I run: console.log YUI().use('base').Base
Then I get `undefined`
然而,
When I run: YUI().use('base', (Y) -> console.log Y.Base)
Then I eventually get the Y.Base ctor function
看起来加载器正在附加异步,因为它使用回调方法工作正常。IIRC 第一种方法应该也可以工作。我错过了什么?