I have rephrased the question again to try to better clarify the need for my situation:
I need to run between the following activity's activityaa, by clicking the button, the application sends an information to a php page, which from this inf...
I'm creating a page in PHP that does a query in a JSON / PHP via ajax and I need it to send to the URL, form variables so I can do a query in this JSON / PHP.
HTML:
<form method="GET" name="formularioBusca"> <input type="text...
I'm trying to make this example but it's giving the error: # 1582 - Incorrect parameter count in the call to native function 'JSON_OBJECT'
SELECT JSON_OBJECT('City', Name, 'Dist', District, 'Pop', Population) FROM City;
sql example returni...
I'm doing a time-stamping page using ASP.NET MVC5. The user enters the marking data according to the print below:
However,incaseofanerrorintheregistrationofthetag,thecontrollerreturnsthemodeltoviewwiththedataenteredbytheuser,usingtheconceptofmo...
Hello, the server is returning me the following json
this.itens = {
id: '',
data: '',
hora: '',
cliente:{
nome: '',
cpf: ''
}
}
I need the client data not to be in a second json but in a field ex clienteNome: ''...
I need to send a POST request to the following address which is an Amazon API:
link
And in this request a JSON has to be sent:
{
"token": "633cc5hs58512b012104c7408d60d19930d5514",
"email": "[email protected]",
"answe...
I am not able to list the data of a Json in a Select
My Jquery code looks like this:
$("#cidades").change(function () {
var options_escolas = '';
var cidade = $("#cidades").val();
$.ajax({ url: 'api_es...
When I do this, return is a parsererror.
$.ajax({
type: "GET",
url: "servicos.php",
data: "id=1",
dataType: 'json', ==========================> Essa linha bem aqui
success: function(retorno,status){
// retorno = JSON...
I recently saw a course where ExpressJS was used for backend testing in JSON for an application and I was amazed, but I came up with several questions:
Could it be used in production?
Can an alternative be the most used technologies currently in...