Posts by Lucas Gabriel • 1 point
4 posts
-
0
votes1
answer197
viewsA: How to receive an array of data from my Ionic Storage
I’ve already found the mistake. The problem was how I was returning the value. Should be dataSave() { this.storage.get('photos').then((photos) => { this.photos = photos || []; }); return…
-
-2
votes1
answer197
viewsQ: How to receive an array of data from my Ionic Storage
I need to send some data to my php that will handle them and send to my Cpanel database. In my code, I can correctly save the data I want (image, latitude and longitude) in the Ionic Storage and…
-
0
votes0
answers45
viewsQ: ERROR in src/app/tab1/tab1.page.ts(17,8): error TS2339: Property 'map' does not exist on type
I’m creating an Ionic app for a project and need to integrate a map, in addition to the camera and gallery functionality that should save the image and user geolocation. I’m having a problem running…
-
0
votes0
answers20
viewsQ: How can I request data in the table of my html page?
I’m making a system where at some point I should display some information listed in a table on the page. How do I create this table that should receive this information from my bank?