IndexedDB
キーを割り当てるマップで構成されるオブジェクトを保持して、データを格納する関数を作成しています。
キーを使用してオブジェクトの値を取得しますが、それは a であり、a ではLinkedHashMap
なくMap
、オブジェクト内のデータにアクセスしようとすると、応答として常にnullが返されます。API ドキュメントを読みましたが、これは初めてで、機能させる方法がわかりません。
私がしようとしているのは、indexedDb からデータを取得し、それをオブジェクトに割り当てて操作できるようにすることです。
よろしくお願いします!!!
/**
* Opens the database, erases it and saves some info
*/
void openDB(var db) {
Map ourList = {'title':'A random title',
'text':'Vivamus sit amet libero turpis, non venenatis urna.',
'data':'2013'};
Map ourList2 = {
'title':'Another random title',
'text':'Vivamus sit amet libero turpis, non venenatis urna.',
'data':'2014'};
db.open()
.then((_) => db.nuke()) /// Erases all the data in the DB
.then((_) => db.save(ourList, '1')) /// Saves an object in the DB
.then((_) => db.save(ourList2, '2'));
print('openDB() was executed'); /// Console control
getTheData(db);
}
/**
* Gets the data from the DB JUST AN EXAMPLE !!
*/
void getTheData(var db){
Map dbData; /// dbData = null for definition
db.open() /// lawndart method
.then((_) => db.getByKey('1')) /// Gets a value depending on the Key
.then((value) => print(value)); /// Prints the value of the key
db.open()
.then((_) => db.getByKey('2'))
.then((value) => print(value)); /// To check != values, use different methods
db.open()
.then((_) => db.getByKey('2'))
.then((value) => print(value.runtimeType)); /// prints the Type of var
/**
* What type of variable it is: _LinkedHashMap
* Classes implement the Map interface and offers mostly the same functionality.
* LinkedHashMap will iterate in the order in which the entries were put into the map
*/
print('getTheData() was executed');/// Console control
}