Posts by dbam • 161 points
5 posts
-
0
votes2
answers81
viewsQ: Nodejs Async / Await / Promisse
I have a question, I need to make the code below, wait for the . map to be executed, and parseCategory() calls an API to get the articles. It turns out that the "final..." console output is executed…
-
1
votes1
answer46
viewsA: First item of a duplicated Arraylist
I traded: if (position > 0) { User m = userItems.get(position); plate.setText(m.getPlate() + " (" + m.getStatus() + ")"); name.setText(m.getFirstname() + " " + m.getLastname());…
-
2
votes5
answers786
viewsA: Can I make a Javascript call through PHP?
Tried to: <?php ... echo '<script language="javascript">'; echo ' alert("fim");'; echo '</script>'; I’m sorry, but I can’t think of anything more "elegant".…
-
0
votes1
answer46
viewsQ: First item of a duplicated Arraylist
Hello, I have the code below that seems to be working correctly, the problem is that the first item in the list either goes blank or copies the data of the last item in the list. public class…
-
3
votes1
answer141
viewsQ: Error 405 when using Httppost on Android
By making a post to the server via Httppost Android get a 405 error. Other applications do the same post successfully, only when part of Android I get this error. Someone knows the reason why? My…