English 中文(简体)
在 Firefox 的网络工作人员中索引化的 DDB
原标题:IndexedDB in Web Worker on Firefox

我正在尝试在 Firefox 12 中使用索引化的DB, 在一个 < 强力 > 网络工人 < /强势 > 中。

dbRequest = mozIndexedDB.open("mydb","test db");

然而 Firefox 显示错误: mozIndexedDB 是未定义的

Tried few others such as self.mozIndexedDB, moz_indexedDBSync but to no avail.
It works great in Chrome using webkitIndexedDB.

任何帮助都会非常感激...

最佳回答

几个月前我碰到类似的事情。

IndexedDB includes both a synchronous and an asynchronous API. The synchronous API is intended for use with WebWorkers (However, IndexedDB is still not supported in Web Workers as of Dec 2011); while the asynchronous API is intended for normal web use. In the majority of cases where you use IndexedDB, you will use the asynchronous API, therefore this article discusses how you can use the asynchronous API.

https:// developmenter.mozilla.org/en/IndexedDB/Using_IndexedDB" rel=“nofollow”>https:// developer.mozilla.org/en/IndexedDB/Using_IndexedDB

问题回答

从索引DB规格中可以删除同步 API

风险地物

The following features are at risk and may be removed, due to potential lack of implementations.

3.3 Synchronous APIs

请注意,您也可以在网络工作者中使用非同步的API。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签