我是齿轮新手,我们在我们的网络应用程序中使用齿轮,流程是......
当用户分配某些任务时,用户将收到带有静态 html 文件的消息,在该 html 中,一旦用户提交,我们就会以 html 形式显示分配给用户的工作,我们正在创建本地数据库并将数据保存到本地数据库,但问题是我们没有得到 google.gears 对象...
function init() {
var success = false;
if (window.google && google.gears) {
try {
db = google.gears.factory.create('beta.database');
if (db) {
db.open('local');
db.execute('create table if not exists user (name varchar
(100), user_req_desc varchar(100), status varchar(100), timestamp
int)');
} catch (ex) {
setError('Could not create database: ' + ex.message);
}
}
if (!window.google || !google.gears) {
if(confirm("Gears is not installed. Do you want to install Gears
now ?")) {
location.href = "http://gears.google.com/?action=install";
}
}
google.gears 对象即将为空
gear 已经安装在我的系统中。
上面的代码在 goole chrome 中工作,意味着它在 chrome 中找到 google.gear 对象。
任何帮助表示赞赏...