How can I delete all firebase data on button click in Ionic3?How to store and view images on firebase?Nested list query in Firebase using Ionic3Firebase + Ionic3 Error: disallowed_useragentionic3 get all data from firebaserendering ionic3 data in view htmlIonic3, angular & firebase get from dbIonic3 , Firebase | Line skippingHow can I summarize all cart data? using Ionic 3 and FirebaseHow to pass console log data into object in Ionic3 and firebase
How to "know" if I have a passion?
Would combining A* with a flocking algorithm be too performance-heavy?
Defense against attacks using dictionaries
Is there such a thing as too inconvenient?
Do we need to assume underlying returns are normal in BSM model, given Central Limit Theorem?
Something in the TV
Was this pillow joke on Friends intentional or a mistake?
How to dismiss intrusive questions from a colleague with whom I don't work?
Why didn’t Doctor Strange stay in the original winning timeline?
Potential new partner angry about first collaboration - how to answer email to close up this encounter in a graceful manner
(Why) May a Beit Din refuse to bury a body in order to coerce a man into giving a divorce?
Why we don't have vaccination against all diseases which are caused by microbes?
Turn TDE off when restoring SQL databases
What's /System/Volumes/Data?
Are illustrations in novels frowned upon?
Why my earth simulation is slower than the reality?
Sleeping solo in a double sleeping bag
Why is Boris Johnson visiting only Paris & Berlin if every member of the EU needs to agree on a withdrawal deal?
!I!n!s!e!r!t! !n!b!e!t!w!e!e!n!
How much code would a codegolf golf if a codegolf could golf code?
Does Git delete empty folders?
Why is 日本 read as "nihon" but not "nitsuhon"?
What is "Wayfinder's Guide to Eberron"?
Why doesn't mathematics collapse even though humans quite often make mistakes in their proofs?
How can I delete all firebase data on button click in Ionic3?
How to store and view images on firebase?Nested list query in Firebase using Ionic3Firebase + Ionic3 Error: disallowed_useragentionic3 get all data from firebaserendering ionic3 data in view htmlIonic3, angular & firebase get from dbIonic3 , Firebase | Line skippingHow can I summarize all cart data? using Ionic 3 and FirebaseHow to pass console log data into object in Ionic3 and firebase
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to delete all the data from firebase on button click on my Ionic 3 app.
here is my html code
and it shows some error that says 'cannot read property key'
<ion-list *ngFor="let item of orderList$ | async">
<ion-item>
<ion-label text-wrap>
<h2 style="font-weight: bold">item?.name</h2>
<p style="color: black">Quantity : item?.qty</p>
<p style="color: black">Price : item?.price</p>
<p class="pr" style="font-weight: bold; color: black">Total :</p><p class="pr" style="color: red"> item?.total</p>
</ion-label>
</ion-item>
<ion-input type="hidden" [(ngModel)]="placed.orders" [value]="namees">namees</ion-input>
</ion-list>
<p style="color: black;">Total Vat(12%) : vatTotal</p>
<p style="color: black">Price Subtotal : priceTotal</p>
<label style="font-weight: bold; font-size: 18px;">Order Total :</label>
<ion-input type="number" [(ngModel)]="placed.totalp" [value]="vatTotal + priceTotal" required="true" disabled="true" style="font-size: 18px;">vatTotal + priceTotal</ion-input>
<button ion-button block clear (click)="addPlaced(placed)">Submit Order</button>
<button ion-button block clear color="default" (click)="removeItem(item)">Delete Order</button>
this is my ts code where removeItem is initiated
removeItem(item: Item)
this.dr.removeItem(item).then(()=>
this.toast.show(`$item.name removed!`);
this.navCtrl.setRoot(HomePage);
);
removeItem service
private cartlistref = this.db.list<Item>('cart');
removeItem(item: Item)
return this.cartlistref.remove(item.key);
my additional question is it possible to delete the created db list 'cart' on button click?
angular ionic-framework firebase-realtime-database ionic3 angularfire2
add a comment |
I want to delete all the data from firebase on button click on my Ionic 3 app.
here is my html code
and it shows some error that says 'cannot read property key'
<ion-list *ngFor="let item of orderList$ | async">
<ion-item>
<ion-label text-wrap>
<h2 style="font-weight: bold">item?.name</h2>
<p style="color: black">Quantity : item?.qty</p>
<p style="color: black">Price : item?.price</p>
<p class="pr" style="font-weight: bold; color: black">Total :</p><p class="pr" style="color: red"> item?.total</p>
</ion-label>
</ion-item>
<ion-input type="hidden" [(ngModel)]="placed.orders" [value]="namees">namees</ion-input>
</ion-list>
<p style="color: black;">Total Vat(12%) : vatTotal</p>
<p style="color: black">Price Subtotal : priceTotal</p>
<label style="font-weight: bold; font-size: 18px;">Order Total :</label>
<ion-input type="number" [(ngModel)]="placed.totalp" [value]="vatTotal + priceTotal" required="true" disabled="true" style="font-size: 18px;">vatTotal + priceTotal</ion-input>
<button ion-button block clear (click)="addPlaced(placed)">Submit Order</button>
<button ion-button block clear color="default" (click)="removeItem(item)">Delete Order</button>
this is my ts code where removeItem is initiated
removeItem(item: Item)
this.dr.removeItem(item).then(()=>
this.toast.show(`$item.name removed!`);
this.navCtrl.setRoot(HomePage);
);
removeItem service
private cartlistref = this.db.list<Item>('cart');
removeItem(item: Item)
return this.cartlistref.remove(item.key);
my additional question is it possible to delete the created db list 'cart' on button click?
angular ionic-framework firebase-realtime-database ionic3 angularfire2
where you have declareitem
that are you passing in on click buttonremoveItem(item)
– Bhagwat Tupe
Mar 27 at 15:53
add a comment |
I want to delete all the data from firebase on button click on my Ionic 3 app.
here is my html code
and it shows some error that says 'cannot read property key'
<ion-list *ngFor="let item of orderList$ | async">
<ion-item>
<ion-label text-wrap>
<h2 style="font-weight: bold">item?.name</h2>
<p style="color: black">Quantity : item?.qty</p>
<p style="color: black">Price : item?.price</p>
<p class="pr" style="font-weight: bold; color: black">Total :</p><p class="pr" style="color: red"> item?.total</p>
</ion-label>
</ion-item>
<ion-input type="hidden" [(ngModel)]="placed.orders" [value]="namees">namees</ion-input>
</ion-list>
<p style="color: black;">Total Vat(12%) : vatTotal</p>
<p style="color: black">Price Subtotal : priceTotal</p>
<label style="font-weight: bold; font-size: 18px;">Order Total :</label>
<ion-input type="number" [(ngModel)]="placed.totalp" [value]="vatTotal + priceTotal" required="true" disabled="true" style="font-size: 18px;">vatTotal + priceTotal</ion-input>
<button ion-button block clear (click)="addPlaced(placed)">Submit Order</button>
<button ion-button block clear color="default" (click)="removeItem(item)">Delete Order</button>
this is my ts code where removeItem is initiated
removeItem(item: Item)
this.dr.removeItem(item).then(()=>
this.toast.show(`$item.name removed!`);
this.navCtrl.setRoot(HomePage);
);
removeItem service
private cartlistref = this.db.list<Item>('cart');
removeItem(item: Item)
return this.cartlistref.remove(item.key);
my additional question is it possible to delete the created db list 'cart' on button click?
angular ionic-framework firebase-realtime-database ionic3 angularfire2
I want to delete all the data from firebase on button click on my Ionic 3 app.
here is my html code
and it shows some error that says 'cannot read property key'
<ion-list *ngFor="let item of orderList$ | async">
<ion-item>
<ion-label text-wrap>
<h2 style="font-weight: bold">item?.name</h2>
<p style="color: black">Quantity : item?.qty</p>
<p style="color: black">Price : item?.price</p>
<p class="pr" style="font-weight: bold; color: black">Total :</p><p class="pr" style="color: red"> item?.total</p>
</ion-label>
</ion-item>
<ion-input type="hidden" [(ngModel)]="placed.orders" [value]="namees">namees</ion-input>
</ion-list>
<p style="color: black;">Total Vat(12%) : vatTotal</p>
<p style="color: black">Price Subtotal : priceTotal</p>
<label style="font-weight: bold; font-size: 18px;">Order Total :</label>
<ion-input type="number" [(ngModel)]="placed.totalp" [value]="vatTotal + priceTotal" required="true" disabled="true" style="font-size: 18px;">vatTotal + priceTotal</ion-input>
<button ion-button block clear (click)="addPlaced(placed)">Submit Order</button>
<button ion-button block clear color="default" (click)="removeItem(item)">Delete Order</button>
this is my ts code where removeItem is initiated
removeItem(item: Item)
this.dr.removeItem(item).then(()=>
this.toast.show(`$item.name removed!`);
this.navCtrl.setRoot(HomePage);
);
removeItem service
private cartlistref = this.db.list<Item>('cart');
removeItem(item: Item)
return this.cartlistref.remove(item.key);
my additional question is it possible to delete the created db list 'cart' on button click?
angular ionic-framework firebase-realtime-database ionic3 angularfire2
angular ionic-framework firebase-realtime-database ionic3 angularfire2
asked Mar 27 at 15:25
Ryan Christian CabilinRyan Christian Cabilin
133 bronze badges
133 bronze badges
where you have declareitem
that are you passing in on click buttonremoveItem(item)
– Bhagwat Tupe
Mar 27 at 15:53
add a comment |
where you have declareitem
that are you passing in on click buttonremoveItem(item)
– Bhagwat Tupe
Mar 27 at 15:53
where you have declare
item
that are you passing in on click button removeItem(item)
– Bhagwat Tupe
Mar 27 at 15:53
where you have declare
item
that are you passing in on click button removeItem(item)
– Bhagwat Tupe
Mar 27 at 15:53
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55380848%2fhow-can-i-delete-all-firebase-data-on-button-click-in-ionic3%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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.
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%2f55380848%2fhow-can-i-delete-all-firebase-data-on-button-click-in-ionic3%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
where you have declare
item
that are you passing in on click buttonremoveItem(item)
– Bhagwat Tupe
Mar 27 at 15:53