Posts by Matheus Camargo • 44 points
4 posts
-
1
votes1
answer153
viewsA: Problem with IONIC versions
Always keep your Ionic version up to date, to keep track of updates and upgrades. To create a project in version 3 it is not necessary to downgrade its version of Ionic, just run the following…
-
0
votes2
answers187
viewsA: Nodejs query in SQL Server with Like
You are not using the quotes correctly and will give problem. Follow correct example of concatenation using single and double quotes. var nome = req.body.nome; const query = "SELECT * FROM…
-
1
votes1
answer458
viewsA: How to send an array with ngmodel
When you’re making an angular form, the most common way of capturing this data and putting the values obtained by the form into an object, if you want to store multiple values, within any property…
-
0
votes1
answer67
viewsA: I cannot display the Key element in the table
<tbody> <tr *ngFor="let device of devices_values; let i = index | async"> <td>{{i+1}}</td> <td>{{device.location.latitude}}</td>…