日志打印
接口声明
无需声明
导入模块
无需导入
接口定义
console.debug/log/info/warn/error(message)
打印一段文本
参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
message | String | 是 | 要打印的文本,也可以是格式化文本,规则与浏览器的 console 相同 |
示例:
for (var i = 0; i < 5; i++) {
console.log(`Hello, You've called me ${i} times.`)
}
console.log('I want to print a number: 123456')
后台运行限制
无限制。后台运行详细用法参见后台运行 脚本。