Error.prototype.fileName

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

fileName 属性包含引发此错误的文件的路径.

描述

此非标准属性包含引发此错误的文件的路径. 如果从调试器上下文调用,例如Firefox Developer Tools,将会返回“debugger eval code”.

例子

使用 fileName

var e = new Error('Could not parse input');
throw e;
// e.fileName could look like "file:///C:/example.html"

规范

不属于任何规范的一部分. 非标准.

Browser compatibility

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本支持 未实现 (Yes) 未实现 未实现 未实现
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本支持 未实现 未实现 (Yes) 未实现 未实现 未实现

相关链接