带数据库API接口的Chrome扩展



我想用从chrome中的本地数据库生成的锚点列表来更新div。这是非常简单的事情,但一旦我试图通过回调将数据添加到main.js文件中,一切都会突然变得不定义。或者数组长度设置为0。(当它真的是18岁的时候。)

最初,我尝试将它安装到一个新的阵列中,并以这种方式将其传递回来。

我是否需要在chromemanifest.json中指定一个设置,以便与数据库API进行通信?我查过了,但我能找到的只是"无限存储"

代码如下:

    window.main = {};
window.main.classes = {};
(function(awe){
    awe.Data = function(opts){
      opts = opts || new Object();
      return this.init(opts);
    };
    awe.Data.prototype = {
        init:function(opts){
            var self = this;
            self.modified = true;
            var db = self.db = openDatabase("buddy","1.0","LocalDatabase",200000);
            db.transaction(function(tx){
                tx.executeSql("CREATE TABLE IF NOT EXISTS listing ( name TEXT UNIQUE, url TEXT UNIQUE)",[],function(tx,rs){
                    $.each(window.rr,function(index,item){
                        var i = "INSERT INTO listing (name,url)VALUES('"+item.name+"','"+item.url+"')";
                        tx.executeSql(i,[],null,null);
                    });
                },function(tx,error){
                });
            });
            self._load()
            return this;
        },
        add:function(item){
            var self = this;
            self.modified = true;
            self.db.transaction(function(tx){
                tx.executeSql("INSERT INTO listing (name,url)VALUES(?,?)",[item.name,item.url],function(tx,rs){
                    //console.log('success',tx,rs)
                },function(tx,error){
                    //console.log('error',error)
                })
            });
            self._load()
        },
        remove:function(item){
            var self = this;
            self.modified = true;
            self.db.transaction(function(tx){
                tx.executeSql("DELETE FROM listing where name='"+item.name+"'",[],function(tx,rs){
                    //console.log('success',tx,rs)
                },function(tx,error){
                    //console.log('error',tx,error);
                });
            });
            self._load()
        },
        _load:function(callback){
            var self = this;
            if(!self.modified)
                return;
            self.data = new Array();
            self.db.transaction(function(tx){
                tx.executeSql('SELECT name,url FROM listing',[],function(tx,rs){
                    console.log(callback)
                    for(var i = 0; i<rs.rows.length;i++)
                    {
                        callback(rs.rows.item(i).name,rs.rows.item(i).url)
                        // var row = rs.rows.item(i)
                        // var n = new Object()
                        // n['name'] = row['name'];
                        // n['url'] = row['url'];
                    }
                },function(tx,error){
                    //console.log('error',tx,error)
                })
            })
            self.modified = false
        },
        all:function(cb){
            this._load(cb)
        },
        toString:function(){
            return 'main.Database'
        }
    }
})(window.main.classes);

以及更新列表的代码。

this.database.all(function(name,url){
       console.log('name','url')
       console.log(name,url)
       var data = []
       $.each(data,function(index,item){
           try{
               var node = $('<div > <a href="'+item.url+'">'+item.name + '</a></div>');
               self.content.append(node);
               node.unbind();
               node.bind('click',function(evt){
                   var t = $(evt.target).attr('href');
                   chrome.tabs.create({
                       "url":t
                   },function(evt){
                       self._tab_index = evt.index
                   });
               });
           }catch(e){
               console.log(e)
           }
       })    
   });

通过查看上面的代码,我注意到您正在API中每个函数的末尾执行"self._load()"。HTML5 SQL数据库是异步的,你永远无法保证结果。在这种情况下,我假设结果总是0或随机的,因为这将是一个竞赛条件。

我在我的fb出口商扩展中也做了类似的事情,请随意查看我是如何做到的https://github.com/mohamedmansour/fb-exporter/blob/master/js/database.js

为了解决这样的问题,您是否检查了Web检查器,并查看后台页面中是否出现任何错误。我想这都是背景页吧?试着看看是否发生了任何错误,如果没有,我相信你遇到了比赛条件。只要在回调中移动负载,它就应该正确地调用负载。

关于带有unlimited storage清单属性的第一个问题,在这种情况下不需要它,这不应该是问题所在。web数据库的限制是5MB(上次我记得,它可能已经改变了),如果你使用了大量的数据操作,那么你就使用了这个属性。

只要确保您可以保证this.database.all在数据库初始化后运行即可。

相关内容

  • 没有找到相关文章

最新更新