I run into a problem, I have a list of items in a json. and before filling out a list, I want to check if there is a PROMOS sector in the json. Try this way but it only brings me the first 5 articles and nothing from the PROMOS sector
my java...
I'm working with a file in JSON that comes with a specific structure, which at the time of doing the deserialization process returns some of the values in null.
The source file that I am processing is the following:
{
"t":"i",
"v":
[
{...
I am working on a personal project (using node.js) where I need to get the route of the GET request, for example "/path/to/content" , transform it into an Object and make it look like this:
{
"path": {
"to": {
"content":[...
The result of my php query is shown as follows:
the data is repeated in each query.
<?php
header('Content-type: text/html; charset=UTF-8');
include('functions.php');
$sql = "SELECT * FRO...
Good I am having problems to travel a json with array or that I think, I leave you the code json:
{
"username": "Pepiko",
"platform": "pc",
"stats": {
"kills_solo": 1,
"placetop1_solo": 0,
"placetop10_solo"...
I am trying to consume web service api via httpwebrequest and razor to show it in mvc view. in the mvc controller I have this code in which I want to consume the api
using EntradaElectronicaAlmacenApi.Services;
using System.IO;
using System.Ne...
I have an input of type text there is entered an id to verify if you existed or not.
list.forEach(function(a) {
if (b == a["id"]) {
g["setstatus"](true, a["id"], f);
return c(true)
alert("Correcto!");
}
g["s...
I have the following ARRAY
var array = [
{"productoId":"4","categoriaId":null,"marcaId":"2"},
{"productoId":"87","categoriaId":null,"marcaId":"2"},
{"productoId":"175","categoriaId":null,"marcaId":"20"}
]
This is received by a...
I want to take the information of this json ( link ) and show them in an HTML and show me only the data of the team that it has as clantag TRCIO, until now I have managed to show me the data, but it shows me those of all the equipment.
How could...