使用 Transcrypt for python to javascript 编译我有 2 个相互需要的模块。例如:
我的测试.py:
import myTest2
def test():
myTest2.test()
someConstant = 1
和 myTest2.py:
import myTest
def test():
console.log(myTest.someConstant)
编译为 javascript 并调用后,myTest.test()
我得到一个 RangeError:超出最大调用堆栈大小。我怎样才能避免这种情况,但保留两个相互使用的模块?提前致谢。