0

我正在编写此代码以获取用户的输入:

label Name:
input(in);

label LastName:
input(in);

process.stdin.resume();
process.stdin.setEncoding('utf8');

process.stdin.on('data', function(chunk){
process.stdout.write('data: ' +chunk);
});

process.stdin.on('end', function(){
process.stdout.write('end');
});

我不断收到此错误“语法错误:意外的令牌)”。我不明白为什么。你能帮助我吗?谢谢你!

4

1 回答 1

0

我不确定您收到的语法错误,但对于来自命令行的用户输入,nodejitsu的提示模块非常棒。

var prompt = require('prompt');

//
// Start the prompt
//
prompt.start();

//
// Get two properties from the user: username and email
//
prompt.get(['firstname', 'lastname'], function (err, result) {
  //
  // Log the results.
  //
  console.log('Command-line input received:');
  console.log('  firstname: ' + result.firstname);
  console.log('  lastname: ' + result.lastname);
});

提示 github 页面有许多涉及验证等更复杂情况的示例。

于 2013-04-07T13:51:21.863 回答