Hello Good day I'm doing my first app and what happens is that the information that will be in the application, will be extracted from a database and if I have a connection with it.
I have a cycle for with which I call several states t...
I have a problem when I read a JSON from PHP because I do not know how to access a certain level.
When executing the code in PHP :
$json = file_get_contents($url);
$json_data = json_decode($json, true);
$var=$json_data['message']['publ...
I have a question, I have this method in a view on asp.net MVC 5:
$('#enviar-data').click(function () {
//var formData = new FormData($('form')[0]);
var form = $('#formx');
// console.log(formData);
$.aja...
I created a project of type Navigation Drawer Activity as you will see in the image below:
Where the Import - Gallery, etc sections treat each one as a fragment
As you will see in the image above when clicking on Import in th...
It happens that I am making a query using get of angular, calling data in JSON format. As you can see, in the method get I use the variable $scope.datos , of which, I get the correct result.
app.controller('programad...
I have a cakephp function that returns data in json format in the following way
$response = array($query_license,$query_estate,$result_license);
if ($this->request->is('ajax')) {
echo json_encode($response);
die();...
I have Apache Solr 4.10.3 running a collection called "Collection1". I also have a project in Maven at the moment completely clean and ready to put together. The first thing I want to do is connect to Solr to get indexed data from Collection1. O...
Hello wrote a web api in C # to authenticate, using postman sent the parameters and returns the token correctly, I will leave at the end of post the parameters for testing, and searched for a number of code to bring para...
When making the following request to a Rest API
$response = $this->client->request('GET',$this->urlReports, [
'headers' => $header,
'query' => ['messageId' => '1b15a714-ac04-4c48-bbc5-8b9a747...