Error.prototype.toString()
toString()
方法是 Error
实例的方法,它返回一个表示此错误的字符串。
语法
js
toString()
参数
无。
返回值
一个表示指定的 Error
对象的字符串。
描述
Error
对象覆盖了所有对象继承的 Object.prototype.toString()
方法。其语义如下
js
Error.prototype.toString = function () {
if (
this === null ||
(typeof this !== "object" && typeof this !== "function")
) {
throw new TypeError();
}
let name = this.name;
name = name === undefined ? "Error" : `${name}`;
let msg = this.message;
msg = msg === undefined ? "" : `${msg}`;
if (name === "") {
return msg;
}
if (msg === "") {
return name;
}
return `${name}: ${msg}`;
};
示例
使用 toString()
js
const e1 = new Error("fatal error");
console.log(e1.toString()); // "Error: fatal error"
const e2 = new Error("fatal error");
e2.name = undefined;
console.log(e2.toString()); // "Error: fatal error"
const e3 = new Error("fatal error");
e3.name = "";
console.log(e3.toString()); // "fatal error"
const e4 = new Error("fatal error");
e4.name = "";
e4.message = undefined;
console.log(e4.toString()); // ""
const e5 = new Error("fatal error");
e5.name = "hello";
e5.message = undefined;
console.log(e5.toString()); // "hello"
规范
规范 |
---|
ECMAScript 语言规范 # sec-error.prototype.tostring |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。