当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js prompt.get()用法及代码示例


hint.get()方法是一个异步函数。该方法除了用于复杂属性验证的对象外,还使用表示属性名称的字符串。此函数用于I /O操作。

用法:

prompt.get([object]/[properties name], callbackfunction)

参数:此方法采用两个参数,如下所示:

  1. [对象] /[属性名称]:此参数保留输入值或预定义对象的属性。
  2. callbackfunction:此参数保存回调函数,以使该函数成为异步函数。

安装模块:

  1. 您可以访问安装此模块的链接。您可以使用此命令安装此软件包。
    npm install prompt
    
  2. 之后,您可以仅创建一个文件夹并添加一个文件,例如index.js。要运行此文件,您需要运行以下命令。
    node index.js
    

文件名:Index.js

var prompt = require('prompt'); 
  
// Function call 
prompt.start(); 
    
// Reading two properties from user ie. name & class 
prompt.get(['Name', 'class'], function (err, result) { 
      
  // Printing the result 
  console.log('Command-line input received:'); 
  console.log('Name:' + result.name); 
  console.log('class:' + result.class); 
})

项目结构:

使用以下命令运行index.js文件:

node index.js

输出:

prompt:name:some-user
prompt:class:12th
Command-line input received:
name:some-user
class:12th

相关用法


注:本文由纯净天空筛选整理自zack_aayush大神的英文原创作品 Node.js prompt.get() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。