gpt4 book ai didi

javascript - JavaScript 中的 "Object already exists error"

转载 作者:行者123 更新时间:2023-11-28 16:28:15 25 4
gpt4 key购买 nike

我的 Javascript 程序在 Google Chrome 和 Firefox 上都会产生“对象已存在”错误。 什么样的错误会触发此错误消息?在不知道错误含义的情况下,我很难调试此错误。

最佳答案

根据您的评论:

所有 JavaScript 都是“开源”的(尽管它可以被缩小等),因此您可以简单地搜索该确切的字符串。我得到的唯一用作抛出错误的结果是:http://uxebu.com/blog/2011/04/27/creating-a-persistent-dojo-object-store/ .

store.add = function(object, options){
// Get the id
var id = options && options.id || object.id;

// Check if something exists under the given
// id -- StorageJS always returns null when
// there's no data for a certain key.
if(storage.get(id) !== null){
throw new Error("Object already exists"); // <-- did it somehow get here?
}

// We're save to go now! So hand over the
// request to the put() method.
store.put(object, options);
};

关于javascript - JavaScript 中的 "Object already exists error",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7166610/

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