os.type()方法是os模块的内置应用程序编程接口,用于获取操作系统名称。句法:
os.type()
参数:此方法不接受任何参数。
返回值:此方法返回代表操作系统名称的字符串。返回值可以是MacOS的“ Darwin”,Linux的“ Linux”和Windows的“ Windows_NT”之一。
以下示例说明了Node.js中os.type()方法的使用:
范例1:
javascript
// Node.js program to demonstrate the
// os.type() method
// Allocating os module
const os = require('os');
// Printing os.type() value
console.log(os.type());
输出:
Windows_NT
范例2:
javascript
// Node.js program to demonstrate the
// os.type() method
// Allocating os module
const os = require('os');
// Printing os.type() value
var type = os.type();
switch(type) {
case 'Darwin':
console.log("MacOS");
break;
case 'Linux':
console.log("Linux operating system");
break;
case 'Windows_NT':
console.log("windows operating system");
break;
default:
console.log("other operating system");
}
输出:
windows operating system
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/api/os.html#os_os_type
相关用法
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | os.type() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。