Javascript中的Java的System.out.println()相当于什么?
2022-09-02 20:05:25
我正在为Javascript代码编写一些测试,当遇到错误时,我需要在编译过程中转储一些消息。
有没有与Javascript中的Java等效的Java?System.out.println()
PS:在实现测试时,我还需要转储调试语句。
更新
我正在一个包含所有合并测试的文件上使用maven插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.mozilla.javascript.tools.shell.Main</mainClass>
<arguments>
<argument>-opt</argument>
<argument>-1</argument>
<argument>${basedir}/src/main/webapp/html/js/test/test.js</argument>
</arguments>
</configuration>
</plugin>
更新二
我试过了,但我得到:console.log("...")
js: "src/main/webapp/html/js/concat/tests_all.js", line 147:
uncaught JavaScript runtime exception: ReferenceError: "console" is not defined
我正在测试的代码是一组函数(就像在库中一样)。我正在使用QUnit。