Posts by LuqDragon • 39 points
8 posts
-
1
votes1
answer34
viewsA: Angularjs / Ionic "Uncaught Typeerror: angular.Moule is not a Function"
Well, it’s written Moule there if you have not noticed, both in the error and in the code. I believe that he is just complaining that this is not a valid method, replace by angular.module in the…
-
-2
votes5
answers1205
views -
-1
votes2
answers69
viewsA: Form not returning Angular data
Check the contents of data that you are assigning to this.clientes may need to use data.data to access the data you want. If the problem is not in receiving the data, at the time of showing that it…
-
0
votes1
answer35
viewsA: Variable synchronization in multiple Java Threads
Look if it helps you: Thread execucao = new Thread(() -> { synchronized (this) { try { processo.executar(quantum); } catch (InterruptedException e) { System.out.println("Thread Interrompida!"); }…
-
0
votes2
answers221
viewsA: JAVA - Skips the input of one of the variables and terminates the code
After reading the double with scanner.nextDouble() utilize scanner.next() instead of scanner.nextLine(). ... System.out.println("Informe Id do produto:"); produtoCarrinho2.id = scanner.next();…
-
0
votes2
answers306
viewsA: Why do builders have to have the same class name?
Basically it’s the method called when you build that object, in the example Cliente cliente = new Cliente(); the new calls the constructor of the Customer class, constructing the desired object and…
-
0
votes1
answer41
viewsA: Condition with Click
Basically your code is saying that if gunaCirclePictureBox2 is clicked it will run this if, which is not what you want. From the way you described it would be better to create a click event for each…
-
-2
votes3
answers77
viewsA: Function Returning Another Function
If it was leaving before the result you would see the result, if it clears the screen and does not appear the result is because you are calling one method under the other. Use the method reset as…
javascriptanswered LuqDragon 39