process.getgroups()方法是Process模塊的內置應用程序編程接口,用於獲取補充組ID。
用法:
process.getgroups();
參數:此方法不接受任何參數。
返回:它返回一個整數數組,指定補充組ID。
注意:此函數僅在POSIX平台上有效。在Windows或Android平台上不可用,因此會導致錯誤,即TypeError,getgroups不是函數。
以下示例說明了Node.js中process.getgroups()方法的使用:
範例1:
// Allocating process module
const process = require('process');
// Printing the supplementary group IDs.
console.log(process.getgroups());
輸出:
[0]
範例2:
// Allocating process module
const process = require('process');
// Checking whether the method exists or not
if (process.getgroups) {
// Printing getgroups() values
console.log("The supplementary group IDs:"
+ process.getgroups());
}
輸出:
The supplementary group IDs:[0]
參考: https://nodejs.org/api/process.html#process_process_getgroups
相關用法
注:本文由純淨天空篩選整理自anwesha0107大神的英文原創作品 Node.js | process.getgroups() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。