createIndex
ObjectStoreが次のように作成された直後にObjectStoreインデックスを定義するために使用するJavaScriptの例を複数見てきました。
var objectStore = ixDb.createObjectStore(osName, { keyPath: pkName, autoIncrement: autoIncrement });
objectStore.createIndex("name", "name", { unique: false });
createIndex
誰かが電話せずに既存のテーブルでどのように使用するかを教えてもらえますcreateObjectStore
か?createObjectStore
ここでの本当の問題は、 ?を使用せずにobjectStoreへの参照を取得する方法だと思います。
私は運が悪かった次のいくつかのバリエーションを試しました:
var objectStore = window.IDBTransaction.objectStore(ObjectStoreName);
var index = objectStore.createIndex(ixName, fieldName, { unique: unique, multiEntry: multiEntry });