如果没有什么可匹配的话,什么是在Node.js readline模块中返回的完成方法?

时间:2014-02-25 14:04:10

标签: node.js readline

文档中没有提到它 http://nodejs.org/api/readline.html

1 个答案:

答案 0 :(得分:1)

通过在readline模块中阅读此类代码,只需传递[]即可:

var completions = rv[0],
    completeOn = rv[1];  // the text that was completed
if (completions && completions.length) {
  // Apply/show completions.
  if (completions.length === 1) {
    self._insertString(completions[0].slice(completeOn.length));
  } else {
    self.output.write('\r\n');

completionsundefined时,不会发生任何事情。