TextDecoder()
TextDecoder()
构造函数使用参数中指定的编码返回一个新创建的 TextDecoder
对象。
语法
js
new TextDecoder()
new TextDecoder(utfLabel)
new TextDecoder(utfLabel, options)
参数
异常
RangeError
-
如果
label
值是未知的,或是使用了'replacement'
解码算法("iso-2022-cn"
或"iso-2022-cn-ext"
两个值之一),则会抛出。
示例
js
const textDecoder1 = new TextDecoder("iso-8859-2");
const textDecoder2 = new TextDecoder();
const textDecoder3 = new TextDecoder("csiso2022kr", { fatal: true }); // Allows TypeError exception to be thrown.
const textDecoder4 = new TextDecoder("iso-2022-cn"); // Throw a RangeError exception.
规范
Specification |
---|
Encoding Standard # ref-for-dom-textdecoder① |
浏览器兼容性
BCD tables only load in the browser
参见
- 属于
TextDecoder
接口。