无法传播退出代码
Can't propagate exit code
我尝试退出我的 javascript
代码,如下所示:
slimer.exit(1);
但是我没有得到退出代码 1。我什至尝试:
slimer.exit(2);
我永远得到退出代码 0。
任何idea/help?
直接来自 documentation...(强调我的)
exit()
It stops the script and SlimerJS exit.
It accepts an optional exit code but it is ignored because of a
limitation in Firefox/XulRunner.
slimer.exit();
退出代码被忽略。这是 slimerJS 中的一个已知问题。
我尝试退出我的 javascript
代码,如下所示:
slimer.exit(1);
但是我没有得到退出代码 1。我什至尝试:
slimer.exit(2);
我永远得到退出代码 0。
任何idea/help?
直接来自 documentation...(强调我的)
exit()
It stops the script and SlimerJS exit.
It accepts an optional exit code but it is ignored because of a limitation in Firefox/XulRunner.
slimer.exit();
退出代码被忽略。这是 slimerJS 中的一个已知问题。