gpt4 book ai didi

javascript - Firefox 中什么触发了 "Object cannot be created in this context, Code: 9"?

转载 作者:行者123 更新时间:2023-12-02 20:47:40 25 4
gpt4 key购买 nike

我们偶尔会在 Firefox 上的网络应用程序中看到这种情况。是什么触发了它,我们如何预防它?它似乎偶尔发生,并且错误消息没有提供有关线路位置的有用信息。

最佳答案

一个quick google search产生了这个:

http://blowery.org/2008/02/28/object-cannot-be-created-in-this-context-code-9/

...check your code to see if you’re trying to grab a reference to the computed style on a null reference.

它似乎与Dojo框架连接。

<小时/>

编辑:哈。抱歉,我给了你你自己的博客作为答案。我想我不完全明白你在问什么。如果您想避免该错误,可以在运行适用的代码之前使用对象检查。

function isValidObject(someObject)
{
return typeof someObject != null;
}

var obj1 = "Hello World";

if(isValidObject(obj1))
{
//This code will run
}

if(isValidObject(ob2))
{
//This code will not run
}

希望这对您有帮助。

关于javascript - Firefox 中什么触发了 "Object cannot be created in this context, Code: 9"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/762679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com