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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。