TextDecoderStream: encoding 属性
encoding
是 TextDecoderStream
接口的只读属性,它返回一个字符串,其中包含特定解码器使用的编码算法的名称。
编码由 构造函数 的 label
参数设置,默认为 utf-8
。
值
包含编码格式的小写 ASCII 名称的字符串。
允许的值与 TextDecoder.encoding
中列出的值相同(编码 API 编码 中的标签)。
示例
从 TextDecoderStream
返回 encoding
的值。
js
stream = new TextDecoderStream();
console.log(stream.encoding); // returns the default "utf-8"
规范
规范 |
---|
编码标准 # dom-textdecoder-encoding |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。