Node.js process.setgroups() 方法
process.setgroups() 方法是流程模块的内置应用程序编程接口,用于设置补充组 ID。
句法:
process.setgroups( groups )
参数:此方法接受一个如上所述和如下所述的参数。
- groups:这是一个必需的参数,一个字符串或整数数组或两者都表示组 ID 或组名称或两者兼而有之。
返回:它不返回任何东西。对于设置组 ID,Node.js 进程需要 root 权限,因为它是特权操作。
注意:此函数仅适用于 POSIX 平台。在 windows 或 android 平台上不可用,因此会导致错误,即 TypeError, setgroups is not a 函数。
下面的例子说明了在 Node.js 中process.setgroups() 方法的使用:
示例 1:
// Allocating process module
const process = require('process');
// Printing the supplementary group
// IDs before setting.
console.log(process.getgroups());
// Array of Group Ids
var arr=new Array(300, 400, 2000);
// Setting the supplementary group IDs.
process.setgroups(arr);
// Printing the supplementary group IDs.
console.log(process.getgroups());
输出:
[ 0 ]
[ 300, 400, 2000, 0 ]
示例 2:
// Allocating process module
const process = require('process');
if (process.setgroups) {
var arr=new Array(300, 400, 2000);
// Setting the supplementary group IDs.
process.setgroups(arr);
}
// Checking whether the method exists or not
if (process.getgroups) {
// Printing getgroups()
console.log("The supplementary group IDs :",
process.getgroups());
}
输出:
The supplementary group IDs : [ 300, 400, 2000, 0 ]
注意:上述程序将使用node filename.js命令编译和运行,仅在 POSIX 平台上。
参考: https://nodejs.org/api/process.html#process_process_setgroups_groups