Posts by Diego Ferreira • 11 points
5 posts
-
0
votes1
answer252
viewsA: Pass parameters between screens [ionic2 / angular2]
Just pick up by the navParams. To pass the id do the following: this.navCtrl.push(TestePage, {id: '1'}); Down at Testepage, you get with: let id_objeto = this.navParans.get(id); IONIC documentation…
-
0
votes1
answer115
viewsA: use variable to call ngFor in Ionic2
Brother, ngFor serves to loop. in arrays for example, so it will take the positions of the array. More if you want to display the content if there is value in the variable. you can use: *ngIf or…
-
0
votes2
answers534
viewsA: View data in PHP table
// count of received lines in the array $total = ibase_num_rows($sth); // loops the array, assembling the table rows. // Just print the variable while($row = ibase_fetch_object($sth)) { $linhas =…
-
1
votes0
answers375
viewsQ: Cordova-plugin-file --- Download file outside the APP folder - Ionic 2/3
People would like a help, I need to save files that the user downloads from the app on the device, put out of the app folder. All file plugin paths. Example: Cordova.file.dataDirectory Do not answer…
-
0
votes5
answers1534
viewsA: Ionic 2 - Status Bar
StatusBar.backgroundColorByHexString(#f69c55); This form is incorrect, because the documentation has to be a 'STRING' value. The right way to use it is:…