5

我有一个文件包含

1 : "Benz"
2 : "Bmw"
3 : "Porche"
4 : "Ferrari"

我想用 Jquery 阅读它并将它们存储在 OpenDataBase 的本地数据库中,其中 1 将是一个步骤数,而 Benz 将是数据库中的另一个字段。

我读取文件的代码

jQuery.get('file/words.txt', function(data) {
    alert(data)
});

和我创建数据库的代码

var db = openDatabase( ’mydb’, ’1.0’,
                   ’database for test’,
                   2 * 1024 * 1024
                 );
db.transaction(function (tx) {
tx.executeSql(’CREATE TABLE IF NOT EXISTS Car
                (number INT, name VARCHAR(100))’);

});

我不知道如何分离数据并使用 javascript 将它们放入数据库中。

谢谢。

4

2 回答 2

1

如果可以的话,去掉文本文件中的数字和引号,它们不应该是必需的(你的柜台会为你做这件事)。

将读取文本文件的代码更改为:

    var file = "file/words.txt";
    function getFile(){
       $.get(file, function(txt){
           var lines = txt.responseText.split("\n");
           for (var i = 0, len = lines.length; i < len; i++) {
               save(lines[i]);
           }
       }); 
    }

现在您的文件的每一行都有一个数组;如果您删除了数字和引号,则应该只是汽车名称。

for (var i = 0; i < lines.length; i++) {
   tx.executeSql('INSERT INTO Car (id, name) VALUES (i, lines[i]);
}

如果要保持文件原样,请更改以下行,如下所示:

 var lines = txt.responseText.split(":");

现在数组包含号码和车名(奇数是号码,偶数是车名)。我们可能想去掉双引号(SQL 可能会在它们上面抛出错误):

lines.replace(/"/g, '').trim();

 for (var i = 0; i < lines.length; i++) {
       tx.executeSql('INSERT INTO Car (id, name) VALUES (i, lines[i+1])');
       i++; // we iterate again because we want an odd number 
            // (we skip over one iteration as that'd be the car, and we want the next # instead). 
    }
于 2015-12-24T00:58:27.143 回答
1

这是您想要的代码:

// assume this is your data (I've added the newline as well)
var textData = '1 : "Benz" \n2 : "Bmw" \n3 : "Porche"\n4 : "Ferrari" ';

// turn data into array
var ary = textData.split('\n').map(function(v) {
    return v.split(':').map(function(v2) {
        // make sure we remove the quotes and spaces
        return v2.replace(/"/g, '').trim();
    });
})

// function to escape double quotes to prevent sql injection
function escapeSql(str) {
    return (typeof str === 'number' ? str : str.replace(/"/g, '"'));
}

// open database
var db = openDatabase('mydb', '1.0', 'database for test', 2 * 1024 * 1024);

// create table
db.transaction(function(tx) {
    tx.executeSql('create table if not exists Car(step, make)');
});

// insert data
db.transaction(function(tx) {
    // loop through each item and insert the data, notice how we call escapeSql to prevent sql injection
    ary.forEach(function(item) {
        var sql = 'insert into Car(step, make) values(' + escapeSql(item[0]) + ', "' + escapeSql(item[1]) + '")';
        tx.executeSql(sql);
    });
});

var sql,
    cars = [];

// read data from table
db.transaction(function(tx) {
    tx.executeSql('select * from Car', [], function(tx, results) {
        var len = results.rows.length;
        for (var i = 0; i < len; i++) {
            cars.push({
                step: results.rows.item(i).step,
                make: results.rows.item(i).make
            });
        }

        console.log(cars);
    }, null);
});

输出:

在此处输入图像描述

于 2015-12-24T01:41:27.757 回答