1. 首页
  2. 数据库
  3. 其它
  4. node.js中的console用法总结

node.js中的console用法总结

上传者: 2021-02-01 11:35:56上传 PDF文件 78.51KB 热度 20次
代码如下: //建立app.js页面 // 一:页面代码 console.log(“log信息”); //在页面中执行(node app.js)这个文件会在控制台中看到log信息:”log信息” //换个方式执行:node app.js 1>info.txt(1代表重定向标准输出流); //这个时候会在app.js的同级目录下看到一个info.txt文件,里面还有”log信息”. //二:依次序输出所有字符串 console.log(“%s”,”first”,”second”); //输出结果:first second //三.将对象转换为普通字符串后执行 console.log(“%s”,”
用户评论