0

我开始使用 javascript。我认为这个问题仅与 javascript 有关,但它涉及 PhoneGap 和 WebSQL。我的问题和我想做的在代码注释中。

var MyDatabase = function() {
    if (!(this instanceof MyDatabase)) return new MyDatabase();
}

MyDatabase.prototype = {
    db: window.openDatabase("my_database", "1.0", "My Database", 5000000),

    getAllPosts: function(callback) {
        var query = "SELECT * FROM posts",
            that = this,
            result;

        function onSuccess (transaction, resultSet) {
            console.log('get posts with success.');
            result = resultSet.rows; // I think this should work, but it doesn't
            if (typeof callback === 'function') callback.call(that, result);
        }

        function onError(transaction, error) {
            console.log(error);
        }

        this.db.transaction(function(t){ t.executeSql(query, [], onSuccess, onError) });

        return result; // result still undefined
    }
};

// Imagine that the posts table are created and has some rows seted.

var database = MyDatabase();

// The callback works fine.
database.getAllPosts(function(result) {
  // do something with result.
  console.log(result);
  // SQLResultSetRowList
});

// But in some cases I want to do this and I get result as undefined =(
var result = database.getAllPosts();

有什么想法吗?

谢谢。

4

1 回答 1

2

您必须使用回调。你不能返回result你的代码,因为onSuccess还没有被调用,所以什么都不会设置result

于 2012-05-23T11:26:39.240 回答