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ため、コードを返すことはできません。そのため、何も設定されません。onSuccessresult

于 2012-05-23T11:26:39.240 に答える