Get response after set data on firebase ionic 3
up vote
0
down vote
favorite
Following code for set data on firebase database.
I want to know how to get successfully saved details after set in firebase?
//get current time fire base
getCurrentDate() {
//Client Meeting model
let oCurrentDateModel = new current_date_model();
oCurrentDateModel.current_date_time_stamp = firebase.database.ServerValue.TIMESTAMP;
return new Promise<any>((resolve, reject) => {
this.oAngularFireDatabase.database.ref('/Settings')
.child('CurrentDate')
.set(oCurrentDateModel)
.then(
data => {
//THIS DATA IS UNDEFINED
//HERE I WANT TO GET SAVED current_date_time_stamp
console.log(data);
//Alert Generation
this.oAlertProvider.showAlert('Success', "Updated Successful");
},
err => {
reject(err);
//Alert Generation
this.oAlertProvider.showAlert('Error', err.message);
})
})
}
javascript firebase firebase-realtime-database
add a comment |
up vote
0
down vote
favorite
Following code for set data on firebase database.
I want to know how to get successfully saved details after set in firebase?
//get current time fire base
getCurrentDate() {
//Client Meeting model
let oCurrentDateModel = new current_date_model();
oCurrentDateModel.current_date_time_stamp = firebase.database.ServerValue.TIMESTAMP;
return new Promise<any>((resolve, reject) => {
this.oAngularFireDatabase.database.ref('/Settings')
.child('CurrentDate')
.set(oCurrentDateModel)
.then(
data => {
//THIS DATA IS UNDEFINED
//HERE I WANT TO GET SAVED current_date_time_stamp
console.log(data);
//Alert Generation
this.oAlertProvider.showAlert('Success', "Updated Successful");
},
err => {
reject(err);
//Alert Generation
this.oAlertProvider.showAlert('Error', err.message);
})
})
}
javascript firebase firebase-realtime-database
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Following code for set data on firebase database.
I want to know how to get successfully saved details after set in firebase?
//get current time fire base
getCurrentDate() {
//Client Meeting model
let oCurrentDateModel = new current_date_model();
oCurrentDateModel.current_date_time_stamp = firebase.database.ServerValue.TIMESTAMP;
return new Promise<any>((resolve, reject) => {
this.oAngularFireDatabase.database.ref('/Settings')
.child('CurrentDate')
.set(oCurrentDateModel)
.then(
data => {
//THIS DATA IS UNDEFINED
//HERE I WANT TO GET SAVED current_date_time_stamp
console.log(data);
//Alert Generation
this.oAlertProvider.showAlert('Success', "Updated Successful");
},
err => {
reject(err);
//Alert Generation
this.oAlertProvider.showAlert('Error', err.message);
})
})
}
javascript firebase firebase-realtime-database
Following code for set data on firebase database.
I want to know how to get successfully saved details after set in firebase?
//get current time fire base
getCurrentDate() {
//Client Meeting model
let oCurrentDateModel = new current_date_model();
oCurrentDateModel.current_date_time_stamp = firebase.database.ServerValue.TIMESTAMP;
return new Promise<any>((resolve, reject) => {
this.oAngularFireDatabase.database.ref('/Settings')
.child('CurrentDate')
.set(oCurrentDateModel)
.then(
data => {
//THIS DATA IS UNDEFINED
//HERE I WANT TO GET SAVED current_date_time_stamp
console.log(data);
//Alert Generation
this.oAlertProvider.showAlert('Success', "Updated Successful");
},
err => {
reject(err);
//Alert Generation
this.oAlertProvider.showAlert('Error', err.message);
})
})
}
javascript firebase firebase-realtime-database
javascript firebase firebase-realtime-database
edited Nov 9 at 14:40
Frank van Puffelen
224k26364390
224k26364390
asked Nov 9 at 8:14
ThusharaHettigoda
489
489
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
To get the value of a server-side timestamp, you will have to attach a listener:
let timestampRef = this.oAngularFireDatabase.database.ref('/Settings/CurrentDate/current_date_time_stamp');
let timestampListener = timestampRef.on("value", function(snapshot) {
if (snapshot.exists()) {
console.log(snapshot.val());
timestampRef.off("value", timestampListener);
}
});
This snippet of code also removes the listener once it has gotten the timestamp value.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
To get the value of a server-side timestamp, you will have to attach a listener:
let timestampRef = this.oAngularFireDatabase.database.ref('/Settings/CurrentDate/current_date_time_stamp');
let timestampListener = timestampRef.on("value", function(snapshot) {
if (snapshot.exists()) {
console.log(snapshot.val());
timestampRef.off("value", timestampListener);
}
});
This snippet of code also removes the listener once it has gotten the timestamp value.
add a comment |
up vote
0
down vote
To get the value of a server-side timestamp, you will have to attach a listener:
let timestampRef = this.oAngularFireDatabase.database.ref('/Settings/CurrentDate/current_date_time_stamp');
let timestampListener = timestampRef.on("value", function(snapshot) {
if (snapshot.exists()) {
console.log(snapshot.val());
timestampRef.off("value", timestampListener);
}
});
This snippet of code also removes the listener once it has gotten the timestamp value.
add a comment |
up vote
0
down vote
up vote
0
down vote
To get the value of a server-side timestamp, you will have to attach a listener:
let timestampRef = this.oAngularFireDatabase.database.ref('/Settings/CurrentDate/current_date_time_stamp');
let timestampListener = timestampRef.on("value", function(snapshot) {
if (snapshot.exists()) {
console.log(snapshot.val());
timestampRef.off("value", timestampListener);
}
});
This snippet of code also removes the listener once it has gotten the timestamp value.
To get the value of a server-side timestamp, you will have to attach a listener:
let timestampRef = this.oAngularFireDatabase.database.ref('/Settings/CurrentDate/current_date_time_stamp');
let timestampListener = timestampRef.on("value", function(snapshot) {
if (snapshot.exists()) {
console.log(snapshot.val());
timestampRef.off("value", timestampListener);
}
});
This snippet of code also removes the listener once it has gotten the timestamp value.
answered Nov 9 at 14:40
Frank van Puffelen
224k26364390
224k26364390
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53221993%2fget-response-after-set-data-on-firebase-ionic-3%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown