Firefox

时间:2017-07-03 13:43:51

标签: haxe

在我的haxe项目中,我的目标是javascript,并使用@:expose公开类来从外部haxe项目调用它。

在我的Main课程中,我使用instance来访问单音班。

喜欢:

com.Main.instance

现在,当我尝试访问类中的函数ini时,它仅在使用Chrome时才有效,但在Firefox上会出错:

TypeError: com.Main.instance is undefined

知道为什么它适用于Chrome,但不适用于Firefox?

我正在使用haxe版本3.4.0

更新 我添加了最小化的haxe示例文件来重现问题

package com;

import js.Browser;
@:expose
class Main {
    /*
    Using this var results in undefined
    example at Firefox console:
    >> com.Main.instance
    undefined
    */        
    @isVar public static var instance(get, null):Main = null;

    static function get_instance():Main {
        if (instance == null)
            instance = new Main();
        return instance;
    }

    function new() {
    }
    static function main() {
        trace('Hello World');
    }
    /*
    Calling this method results in error
    example at Firefox console:
    >> com.Main.instance.init();
    TypeError: com.Main.instance is undefined
    */
    public function init(){
        Browser.console.log("Main Initialized");
    }
}

以下是HTML页面:

<!DOCTYPE html>
<html>
<head>
    <script
  src="https://code.jquery.com/jquery-3.2.1.min.js"
  integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
  crossorigin="anonymous"></script>

    <script type="text/javascript" src="map.js"></script>
</head>


<body >

     <script>


$(document).ready(function () {
   com.Main.instance.init();
});

        </script>




</body>
</html>

这是编译的map.js:

// Generated by Haxe 3.4.0
(function ($hx_exports) { "use strict";
$hx_exports["com"] = $hx_exports["com"] || {};
var com_Main = $hx_exports["com"]["Main"] = function() {
};
com_Main.get_instance = function() {
    if(com_Main.instance == null) {
        com_Main.instance = new com_Main();
    }
    return com_Main.instance;
};
com_Main.main = function() {
    console.log("Hello World");
};
com_Main.init = function() {
    window.console.log("Main Initialized");
};
com_Main.__meta__ = { statics : { instance : { isVar : null}}};
com_Main.main();
})(typeof exports != "undefined" ? exports : typeof window != "undefined" ? window : typeof self != "undefined" ? self : this);

//# sourceMappingURL=map.js.map

1 个答案:

答案 0 :(得分:1)

据我所知,从外部JS代码中使用Haxe属性并不受支持(请参阅问题#2469)。

您可以直接调用getter(例如com.Main.get_instance().init())或检查其他解决方案的问题。

注意:我无法确认该示例是否适用于Chrome(59或60),实际上,我认为它无法实现。