我不确定Dexie的最佳做法,在从csv文本文件创建数据库时,我昨天才开始使用它。
我所做的是创建我的商店
var db = new Dexie('gtfs');
db.version(1).stores({
'calendar' : "++id,service_id,monday,tuesday,wednesday,thursday,friday,saturday,sunday,start_date,end_date",
'calendar_dates': "++id,service_id,date,exception_type",
'stop_times' : "++id,trip_id,arrival_time,departure_time,stop_id,stop_sequence,pickup_type,drop_off_type",
'stops' : "++id,stop_id,stop_code,stop_name,stop_lat,stop_lon,zone_id,stop_url,location_type,parent_station,platform_code,wheelchair_boarding",
'trips' : "++id,route_id,service_id,trip_id,trip_headsign,trip_short_name,direction_id,shape_id,wheelchair_accessible,bikes_allowed"
});
到目前为止它看起来是这样的,对indexedDB不是很熟悉,但到目前为止看起来还不错。
既然我有一个包含所有txt文件的gtfs文件夹,我会迭代并从txt文件中获取数据,并转换为JSON。
db.on('ready', function () {
return new Dexie.Promise(function (resolve, reject) {
// var url = gtfs
gtfs.forEach(function (name, index) {
var url = 'gtfs/' + name + '.txt';
$.ajax(url, {
type: 'get',
dataType: 'text',
error: function (xhr, textStatus) {
// Rejecting promise to make db.open() fail.
reject(textStatus);
},
success: function (data) {
// Resolving Promise will launch then() below.
var result = csvJSON(data);
var res = JSON.parse(result);
console.log("Got ajax response. We'll now add the objects.");
// By returning the db.transaction() promise, framework will keep
// waiting for this transaction to commit before resuming other
// db-operations.
resolve(data);
}
});
});
所以现在它正在工作(实际上,它通过每个txt文件,但只能在最后一个文件中解析),我无法将所有内容保存在“某些表格”中#t;'正如原始示例代码所做的那样。所以如上所述我创建了我的新店。我碰到了这个障碍,我必须把我的桌子硬编码作为一种方法。即db.calendar
。
}).then(function (data) {
var result = csvJSON(data);
var res = JSON.parse(result);
console.log("Got ajax response. We'll now add the objects.");
// By returning the db.transaction() promise, framework will keep
// waiting for this transaction to commit before resuming other
// db-operations.
return db.transaction('rw', db.calendar, function () {
res.forEach(function (item) {
console.log("Adding object: " + JSON.stringify(item));
db.calendar.add(item);
})
})
}).then(function () {
console.log("Transaction committed");
});
})
为了保持我的代码' DRY'至少有一种方法可以在db中获取我可以分别添加的所有已创建的表方法。如果是这样,那还能让我处理我为每个表创建的关键路径吗?
答案 0 :(得分:0)
在提出此问题时,这是dexie版本: “ dexie”:“ ^ 1.4.2”
https://github.com/dfahlander/Dexie.js/issues/320#issuecomment-248760222