TypeError:在console.log.apply上的非法调用 [英] TypeError: Illegal Invocation on console.log.apply

查看:672
本文介绍了TypeError:在console.log.apply上的非法调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果您在Chrome控制台中执行此操作:

If you run this in the chrome console:

console.log.apply(null, [array])

Chrome会返回一个错误:

Chrome gives you back an error:

// TypeError: Illegal Invocation

为什么? (通过OSX在Chrome 15上测试)

Why? (Tested on Chrome 15 via OSX)

推荐答案

从控制台到任何其他对象:

It may not work in cases when execution context changed from console to any other object:


这是预期的,因为console.info期望其对
的this引用是控制台,不是窗口。

This is expected because console.info expects its "this" reference to be console, not window.

console.info("stuff")
stuff
undefined
console.info.call(this, "stuff")
TypeError: Illegal invocation
console.info.call(console, "stuff")
stuff
undefined

这是预期的行为。

http://code.google.com/p/chromium/issues/detail?id= 48662

这篇关于TypeError:在console.log.apply上的非法调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆