控制台


¥Console

console.log

调用 console.log() 时触发。接收传递给 console.log() 的参数数组。

¥Emitted when console.log() is called. Receives and array of the arguments passed to console.log().

console.info

调用 console.info() 时触发。接收传递给 console.info() 的参数数组。

¥Emitted when console.info() is called. Receives and array of the arguments passed to console.info().

console.debug

调用 console.debug() 时触发。接收传递给 console.debug() 的参数数组。

¥Emitted when console.debug() is called. Receives and array of the arguments passed to console.debug().

console.warn

调用 console.warn() 时触发。接收传递给 console.warn() 的参数数组。

¥Emitted when console.warn() is called. Receives and array of the arguments passed to console.warn().

console.error

调用 console.error() 时触发。接收传递给 console.error() 的参数数组。

¥Emitted when console.error() is called. Receives and array of the arguments passed to console.error().