Node.js“未定义”神秘地出现

发布于 2024-11-25 18:40:05 字数 657 浏览 0 评论 0原文

我有以下 node.js 文件:

//test.js:
var hash=require('./hash');
var sys=require('sys');

sys.puts(hash.hash("asdf","asdf"));

并且

//hash.js:
var exec=require('child_process').exec;
var sys=require('sys');

exports.hash=function(data,hash_type){
        exec('pwd',function callback(error,stdout,stderr){
                sys.puts(stdout);
        });
}

当我执行 node test.js 时,我得到以下输出:

eamorr@Compaq6000:~/Desktop/simple-hash$ node test.js 
undefined
/home/hynese/Desktop/nodejs-simple-hash

为什么我得到“未定义”???我真的被困在这里...

非常感谢任何帮助。

预先非常感谢,

I have the following node.js files:

//test.js:
var hash=require('./hash');
var sys=require('sys');

sys.puts(hash.hash("asdf","asdf"));

and

//hash.js:
var exec=require('child_process').exec;
var sys=require('sys');

exports.hash=function(data,hash_type){
        exec('pwd',function callback(error,stdout,stderr){
                sys.puts(stdout);
        });
}

When I do node test.js, I get the following output:

eamorr@Compaq6000:~/Desktop/simple-hash$ node test.js 
undefined
/home/hynese/Desktop/nodejs-simple-hash

Why am I getting "undefined"??? I'm really stuck here...

Any help is greatly appreciated.

Many thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心意如水 2024-12-02 18:40:05

将:更改

sys.puts(hash.hash("asdf","asdf"));

为 just:

hash.hash("asdf","asdf");

您正在输出 hash.hash 的返回值,尽管由于您没有提供返回值,所以语言返回 undefined,然后将其输出到屏幕。您已经在回调中输出了系统命令的结果,因此您不需要另一个 sys.puts

附带说明一下,您可能不需要将该回调函数命名为 callback

Change:

sys.puts(hash.hash("asdf","asdf"));

to just:

hash.hash("asdf","asdf");

You're outputting the return value of hash.hash, although since you didn't provide a return value, the language returns undefined, which is then outputted to the screen. You already output the result of the system command in the callback, so you don't need another sys.puts.

As a side note, you probably don't need to name that callback function callback.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文