I'm trying to consume a JSON in my application. I created a SplashScreen and in it, I'm trying to download the data from the JSON file and send it to my MasterActivity , where, construct a ListView with this data. I'm getting the follow...
I have a JSON of states and cities as follows:
{
"estados": [
{
"sigla": "AC",
"nome": "Acre",
"cidades": [
"Acrelândia",
"Assis Brasil",
"Brasiléia",
"Bujari",
"Capixaba",...
I'm trying to make requests in external WebServices with Cake's HttpSocket, the documentation has this example
$HttpSocket = new HttpSocket();
// string query
$results = $HttpSocket->get('https://www.google.com/search', 'q=cakephp');
// a...
I'm using an Api (Json): API
And I would like that when I opened the program I got the api data automatically in the DataViewGrid, how can I solve it?
PS: I've already used newsoftjson
Hello! So I've mapped my classes to the bank, mirrored successfully, and started to build the features of my webservice. With this, I came across the following error:
InvalidOperationException: Unable to resolve service for type 'CadFuncionari...
Good morning everyone,
I'm trying to get the length of a string from an array store in a variable so I can then use an "if".
I use var_dump () where I can know the size of the string but I do not know how to compare that value, that data will be...
Good Morning Friends,
I'm learning Angular, using version 4.4.6 with Angular-Cli and I'm having trouble using the http post service.
First I created a date folder where I stored my json file and added it to the angular-cli.json file.
.a...
I have a table in the mysql database that has a genre field with this value: [{"id": 2, "genre_name": "action"}, {"id": 1, "genre_name": "comedy"}]
and would like to display all rows containing genre_name with the value...
I'm creating API for consumption in Ionic applications, but I'm struggling for 2 weeks in one of these api's, where I relate data in more than one table with inner join. I tried to do as in my php system, where I add the items in the bank, could...