Posts by user128135 • 36 points
2 posts
-
2
votes1
answer54
viewsA: Doubt regarding the Python syntax
This is an unstructurer. self. _capture.Retrieve() returns a tuple with 2 elements, let’s assume 'apple' and 'orange' With the following syntax: frutas = ('maçã', 'laranja') You would have a tuple…
-
0
votes2
answers123
viewsA: Take a JS variable and move to a PHP class using Ajax with Jquery
The first argument of $.post is the address of your request, but you are passing only an empty string. It would have to be something like "localhost:3000/cities/". Check which port your server is…