带有 Firebase 的 Cordova 无法工作
Cordova with Firebase won't work
我正在使用 Cordova 和 Firebase 创建应用程序。
我制作的众多功能之一是这个功能:
function searchForGameRound() {
var ref = new Firebase("https://grootproject.firebaseio.com/Users/");
// Dit is de query naar Firebase toe (kan je vergelijken met een query als bij SQL)
var query = ref.orderByChild("gameSearching").equalTo(true);
console.log('spelen');
// Hierbij geef ik aan dat hij dit enkel 1x mag doen. Dit voorkomt dat hij dit op elk child gaat uitvoeren (wat meerdere games maakt).
query.once("value", function (data) {
console.log('spelen', data.val());
if (data.val() === null) {
updateData(('Users/' + you + '/'), {gameSearching: true});
return;
}
var alreadyInCurrentGame;
var object = data.val();
var user1 = Object.keys(object)[0];
var user2 = Object.keys(object)[1];
// Als je het zelf bent
if (you == user1) {
if (user2) {
opponent = user2;
} else {
updateData(('Users/' + you + '/'), {gameSearching: true});
return;
}
} else {
opponent = user1;
}
console.log(opponent, 'opponent found');
// Hierbij gaat hij kijken of er al een currentgame bestaat met deze user
var ref = new Firebase('https://grootproject.firebaseio.com/Users/' + you + '/currentGames/' + opponent + '/');
ref.once("value", function (snapshot) {
if (!snapshot.val() === null) {
console.log(snapshot.val(), ' bestaat al');
alreadyInCurrentGame = true;
}
}, function (errorObject) {
console.log(errorObject.error);
});
// Als alles goed is, gooit hij er data in.
if (!alreadyInCurrentGame) {
console.log('spel gevonden');
var game = new Firebase("https://grootproject.firebaseio.com/Games/");
game.on("value", function (data) {
var length = Object.keys(data.val()).length;
for (var i = 0; i < length; i++) {
games.push(Object.keys(data.val())[i]);
}
game1 = Math.floor(Math.random() * 4);
game2 = Math.floor(Math.random() * 4);
game3 = Math.floor(Math.random() * 4);
while(game1 == game2){
game2 = Math.floor(Math.random() * 4);
}
while(game2 == game3){
game3 = Math.floor(Math.random() * 4);
}
console.log(games, 'games');
game1 = games[game1];
game2 = games[game2];
game3 = games[game3];
console.log(game1);
console.log(game2);
console.log(game3);
var url = 'https://grootproject.firebaseio.com/Users/' + opponent + '/currentGames/' + you + '/';
var fir = new Firebase(url);
fir.set(
{
round1: {score: '-', game: game1},
round2: {score: '-', game: game2},
round3: {score: '-', game: game3}
}
);
url = 'https://grootproject.firebaseio.com/Users/' + you + '/currentGames/' + opponent + '/';
fir = new Firebase(url);
fir.set(
{
round1: {score: '-', game: game1},
round2: {score: '-', game: game2},
round3: {score: '-', game: game3}
}
);
url = 'https://grootproject.firebaseio.com/Users/' + you + '/';
fir = new Firebase(url);
fir.update(
{gameSearching: false}
);
console.log(opponent, ' opponent');
url = 'https://grootproject.firebaseio.com/Users/' + opponent + '/';
fir = new Firebase(url);
fir.update(
{gameSearching: false}
);
});
} else {
updateData(('Users/' + you + '/'), {gameSearching: true});
}
}, function (err) {
console.log(err, 'error');
});
}
我的 Firebase 规则:
{
"rules": {
".read": true,
".write": true,
"Users": {
".indexOn": "gameSearching"
}
}
}
似乎 console.logs 在他使用 Firebase 时不显示(该功能也不会完成它的工作)。
我得到的唯一 console.log 是第一个 console.log('spelen')
。对我来说很奇怪,因为在我的电脑上它运行良好。
此功能并不是唯一无法正常工作的功能。每次我使用 Firebase 在我的 phone 上检索一些数据时,它都不起作用。
我使用的是最新版本的 Cordova 和 Firebase 版本 2.0.4
有什么想法吗?
编辑
它似乎只有在我登录应用程序时才有效。当我已经登录到 firebase (firebase.getAuth()) 时,该函数将无法工作,我也不会从 firebase 检索任何数据。
似乎 firebase 在没有使用函数 authWithPassword 或 unauth 的情况下没有建立任何连接。
我通过在应用程序启动时使用 Firebase.goOnline(); 解决了我的问题;
document.addEventListener("deviceready", function () {
Firebase.goOnline();
}
我正在使用 Cordova 和 Firebase 创建应用程序。
我制作的众多功能之一是这个功能:
function searchForGameRound() {
var ref = new Firebase("https://grootproject.firebaseio.com/Users/");
// Dit is de query naar Firebase toe (kan je vergelijken met een query als bij SQL)
var query = ref.orderByChild("gameSearching").equalTo(true);
console.log('spelen');
// Hierbij geef ik aan dat hij dit enkel 1x mag doen. Dit voorkomt dat hij dit op elk child gaat uitvoeren (wat meerdere games maakt).
query.once("value", function (data) {
console.log('spelen', data.val());
if (data.val() === null) {
updateData(('Users/' + you + '/'), {gameSearching: true});
return;
}
var alreadyInCurrentGame;
var object = data.val();
var user1 = Object.keys(object)[0];
var user2 = Object.keys(object)[1];
// Als je het zelf bent
if (you == user1) {
if (user2) {
opponent = user2;
} else {
updateData(('Users/' + you + '/'), {gameSearching: true});
return;
}
} else {
opponent = user1;
}
console.log(opponent, 'opponent found');
// Hierbij gaat hij kijken of er al een currentgame bestaat met deze user
var ref = new Firebase('https://grootproject.firebaseio.com/Users/' + you + '/currentGames/' + opponent + '/');
ref.once("value", function (snapshot) {
if (!snapshot.val() === null) {
console.log(snapshot.val(), ' bestaat al');
alreadyInCurrentGame = true;
}
}, function (errorObject) {
console.log(errorObject.error);
});
// Als alles goed is, gooit hij er data in.
if (!alreadyInCurrentGame) {
console.log('spel gevonden');
var game = new Firebase("https://grootproject.firebaseio.com/Games/");
game.on("value", function (data) {
var length = Object.keys(data.val()).length;
for (var i = 0; i < length; i++) {
games.push(Object.keys(data.val())[i]);
}
game1 = Math.floor(Math.random() * 4);
game2 = Math.floor(Math.random() * 4);
game3 = Math.floor(Math.random() * 4);
while(game1 == game2){
game2 = Math.floor(Math.random() * 4);
}
while(game2 == game3){
game3 = Math.floor(Math.random() * 4);
}
console.log(games, 'games');
game1 = games[game1];
game2 = games[game2];
game3 = games[game3];
console.log(game1);
console.log(game2);
console.log(game3);
var url = 'https://grootproject.firebaseio.com/Users/' + opponent + '/currentGames/' + you + '/';
var fir = new Firebase(url);
fir.set(
{
round1: {score: '-', game: game1},
round2: {score: '-', game: game2},
round3: {score: '-', game: game3}
}
);
url = 'https://grootproject.firebaseio.com/Users/' + you + '/currentGames/' + opponent + '/';
fir = new Firebase(url);
fir.set(
{
round1: {score: '-', game: game1},
round2: {score: '-', game: game2},
round3: {score: '-', game: game3}
}
);
url = 'https://grootproject.firebaseio.com/Users/' + you + '/';
fir = new Firebase(url);
fir.update(
{gameSearching: false}
);
console.log(opponent, ' opponent');
url = 'https://grootproject.firebaseio.com/Users/' + opponent + '/';
fir = new Firebase(url);
fir.update(
{gameSearching: false}
);
});
} else {
updateData(('Users/' + you + '/'), {gameSearching: true});
}
}, function (err) {
console.log(err, 'error');
});
}
我的 Firebase 规则:
{
"rules": {
".read": true,
".write": true,
"Users": {
".indexOn": "gameSearching"
}
}
}
似乎 console.logs 在他使用 Firebase 时不显示(该功能也不会完成它的工作)。
我得到的唯一 console.log 是第一个 console.log('spelen')
。对我来说很奇怪,因为在我的电脑上它运行良好。
此功能并不是唯一无法正常工作的功能。每次我使用 Firebase 在我的 phone 上检索一些数据时,它都不起作用。
我使用的是最新版本的 Cordova 和 Firebase 版本 2.0.4
有什么想法吗?
编辑
它似乎只有在我登录应用程序时才有效。当我已经登录到 firebase (firebase.getAuth()) 时,该函数将无法工作,我也不会从 firebase 检索任何数据。
似乎 firebase 在没有使用函数 authWithPassword 或 unauth 的情况下没有建立任何连接。
我通过在应用程序启动时使用 Firebase.goOnline(); 解决了我的问题;
document.addEventListener("deviceready", function () {
Firebase.goOnline();
}