1

我有简单的课程(使用 Dojo):

define ["dojo/request", "dojo/html", "dojo/on", "dojo/dom"], (request, html, observe, dom) ->
   class Foo
     constructor: (@a) ->
       alert @a

我在不同的文件中创建了这个类的一个新对象:

require ["Libraries/Foo", "dojo/domReady!"], (Foo) ->
   t = new Foo "test"

当我将 Foo 类文件编译成 JS 时,一切正常,但是当我使用例如http://jscompress.com缩小 JS 输出时,代码会中断。

缩小后的代码如下所示:

// Generated by CoffeeScript 1.4.0
(function(){define(["dojo/request","dojo/html","dojo/on","dojo/dom"],function(e,t,n,r){var i;return i=function(){function e(e){this.a=e;alert(this.a)}return e}()})}).call(this);

在控制台(Safari,Chrome)我可以看到:

TypeError: '[object Object]' is not a constructor (evaluating 'new Foo("test")')

但是当我在 IDE 中使用工具重新格式化代码时,一切正常。

改造后的代码:

// Generated by CoffeeScript 1.4.0
(function () {
    define(["dojo/request", "dojo/html", "dojo/on", "dojo/dom"], function (e, t, n, r) {
        var i;
        return i = function () {
            function e(e) {
                this.a = e;
                alert(this.a)
            }

            return e
        }()
    })
}).call(this);

请问哪里有问题?

4

1 回答 1

0

问题解决了!async: true在 Dojo 配置中使用。

于 2013-01-25T15:03:56.400 回答