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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。