You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Services is fully responsible for managing almost everything regarding your data, its
46
-
interactions,
47
-
as well as the evolution of information workflow.</p>
48
-
49
-
<p> And as you that the system main connection is [ <strong>Firebase</strong> data system reliable
50
-
for storing and syncing data in real time across all connected clients ]</p>
46
+
interactions, as well as the evolution of information workflow.Understanding that this connects mainly with <strong>Firebase</strong> data system reliable
47
+
for storing and syncing data in real time across all connected clients </p>
51
48
</div>
52
49
53
50
<!--findOne-->
@@ -120,8 +117,10 @@ <h4> Use </h4>
120
117
path: 'posts/post_one'
121
118
}, function(data) {
122
119
if(!data.error) {
120
+
// success
123
121
console.log(data);
124
122
} else {
123
+
// error
125
124
console.log(data);
126
125
}
127
126
});
@@ -207,8 +206,10 @@ <h4> Use </h4>
207
206
path: '/author/posts'
208
207
}, function(data) {
209
208
if(!data.error) {
209
+
// success
210
210
console.log(data);
211
211
} else {
212
+
// error
212
213
console.log(data);
213
214
}
214
215
});
@@ -294,8 +295,10 @@ <h4> Using <code>saveData</code> to create an instance. </h4>
294
295
data: ({author:"John Deauthor", body: "post body content.", title: "Another post title "})
295
296
}, function(data) {
296
297
if(!data.error) {
298
+
// success
297
299
console.log(data);
298
300
} else {
301
+
// error
299
302
console.log(data);
300
303
}
301
304
});
@@ -309,8 +312,10 @@ <h4> Using <code>saveData</code> to create an instance. </h4>
309
312
data: ({author:"John Deauthor", body: "post body content.", title: "Another post title "})
310
313
}, function(data) {
311
314
if(!data.error) {
315
+
// success
312
316
console.log(data);
313
317
} else {
318
+
// error
314
319
console.log(data);
315
320
}
316
321
});
@@ -335,7 +340,7 @@ <h4> Using <code>saveData</code> to create an instance. </h4>
0 commit comments