0

为什么 console.table(或某些其他控制台方法)在 Firefox 中不起作用,或者返回错误?

4

2 回答 2

3

Firefox 的内置Web Console会忽略未知的控制台调用,而不是抛出异常。因此,在正常通话时,例如

window.table()

或普通对象的任何未知方法,你会得到类似的东西:

[20:29:35.381] TypeError: window.table is not a function

然而:

console.table({foo: 'bar'})

只是返回 undefined 而不做任何事情,即使:

typeof console.table

返回:

"undefined"
于 2013-10-24T00:34:53.983 回答
0

作为更新,它从 Firefox 34 开始工作,请参阅: https ://developer.mozilla.org/en-US/docs/Web/API/Console/table

于 2016-05-11T08:20:49.900 回答