error.message
error.message
message
属性是有关错误信息,人类易读的(human-readable)描述。
描述
如果该属性已经被设置,则该属性包含了错误的一个简短描述。SpiderMonkey 大量应用 message
属性在异常方面。 message
属性结合 name
属性一起被 Error.prototype.toString()
方法用来创建错误的字符串形式。
默认情况下,message 属性是一个空字符串,但是可以通过指定一段信息作为 Error constructor 的第一个参数创建一个实例来改变该属性值。
示例
例子:抛出一个自定义错误
var e = new Error('Could not parse input'
// e.message is 'Could not parse input'
throw e;
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262)The definition of 'Error.prototype.message' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Error.prototype.message' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Error.prototype.message' in that specification. | Living Standard | |
Browser compatibility
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | 6 | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | 8.1 | (Yes) | (Yes) |