我对nodejs真的很陌生。 有没有办法将函数内容转换为字符串? 有点像,如果我有:
function() {
....
}
我想要“function(){....}”。
这样的事情可能吗?
答案 0 :(得分:6)
函数已经有toString()
方法......所以只需要(function() {}).toString()
。
例如,在节点REPL中:
> (function() { console.log("hello"); }).toString()
'function () { console.log("hello"); }'
这是指向某些documentation的链接。