@weintek/libc/string
模块可用于将给定的错误代码转换为文本描述。
注意:
@weintek/libc
下的模块(例如errno
、stdio
、string
、unistd
) 受 C 标准库 设计的深刻影响。- 仅当 JS 元件/动作在本地 HMI 上运行时,该模块才可用。
Methods
(static) strerror(errnum) → {String}
- Since:
- EasyBuilder Pro V6.09.01
- See:
此方法返回错误代码 errnum
的文本描述。
Example
获取错误代码并将其转换为可读消息
const cerrno = await import('@weintek/libc/errno');
const cstring = await import('@weintek/libc/string');
const errCode = cerrno.getErrno();
const errMessage = cstring.strerror(errCode);
console.log(`错误: ${errMessage}`);
Parameters:
Name | Type | Description |
---|---|---|
errnum |
Number | 由 |
Returns:
返回与错误代码 errnum
对应的描述性字符串。
- Type
- String