Transcrypt for python を使用して Javascript をコンパイルするには、互いに必要な 2 つのモジュールがあります。例えば:
myTest.py:
import myTest2
def test():
myTest2.test()
someConstant = 1
および myTest2.py:
import myTest
def test():
console.log(myTest.someConstant)
JavaScript にコンパイルして呼び出すmyTest.test()
と、RangeError: Maximum call stack size exceeded が発生します。どうすればこれを回避できますが、相互に使用する 2 つのモジュールを保持できますか? 前もって感謝します。