node.js打印function

Posted Boom__Clap

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js打印function相关的知识,希望对你有一定的参考价值。

var Person = function(name) {
this.name = name;
this.gender = [‘man‘, ‘woman‘];
}
console.log(Person);
console.dir(Person);
console.dir(JSON.stringify(Person));
console.log(typeof(Person));
console.log(Person.toString());

  

上面打印的结果:

[Function: Person]
[Function: Person]
undefined
function
function (name) {
   this.name = name;
   this.gender = [‘man‘, ‘woman‘];
}

  

可以采用toString()的方式对函数进行打印。

 

以上是关于node.js打印function的主要内容,如果未能解决你的问题,请参考以下文章

澄清 node.js + promises 片段

node.js打印function

节点 JS 不提供静态图像

在 node.js 中调用函数

基于 Koa平台Node.js开发的KoaHub.js连接打印机的代码

解决用node.js开发接口安装hotnode后启动服务报(util.print is not a function)