os
命名空间提供与操作系统相关的实用方法和属性。
Methods
(static) hostname() → {String}
读取操作系统的主机名。
Returns:
一个字符串,表示操作系统的主机名。
- Type
- String
(static) networkInterfaces() → {Object}
读取已分配网络地址的网络接口。
Example
{
lo: [
{
address: '127.0.0.1',
netmask: '255.0.0.0',
family: 'IPv4',
mac: '00:00:00:00:00:00',
internal: true,
cidr: '127.0.0.1/8'
},
{
address: '::1',
netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff',
family: 'IPv6',
mac: '00:00:00:00:00:00',
scopeid: 0,
internal: true,
cidr: '::1/128'
}
],
eth0: [
{
address: '192.168.1.108',
netmask: '255.255.255.0',
family: 'IPv4',
mac: '01:02:03:0a:0b:0c',
internal: false,
cidr: '192.168.1.108/24'
},
{
address: 'fe80::a00:27ff:fe4e:66a1',
netmask: 'ffff:ffff:ffff:ffff::',
family: 'IPv6',
mac: '01:02:03:0a:0b:0c',
scopeid: 1,
internal: false,
cidr: 'fe80::a00:27ff:fe4e:66a1/64'
}
]
}
Returns:
一个包含网络接口信息的对象。
返回对象的每个键表示一个网络接口。其对应的值是一个对象数组, 每个对象描述一个 已分配的网络地址。
- Type
- Object
(static) platform() → {String}
读取操作系统的平台信息。
Returns:
一个字符串,标识操作系统的平台。可能的值包括:
HMI
、android
、ios
和 windows
。
- Type
- String
Type Definitions
AssignedNetworkAddress
Properties:
Name | Type | Description |
---|---|---|
address |
String | 已分配的 IPv4 或 IPv6 地址。 |
netmask |
String | IPv4 或 IPv6 的网络掩码。 |
family |
String |
|
mac |
String | 该网络接口的 MAC 地址。 |
internal |
Boolean | 如果该网络接口是回环或类似接口(不可远程访问),则为 |
scopeid |
Number | 数字类型的 IPv6 作用域 ID(仅在 |
cidr |
String | 以 CIDR 表示法标识的 IPv4 或 IPv6 地址和路由前缀。
如果 |
Type:
- Object