I have a class:
public class Filtros{
public DateTime DataInicial { get; set; }
public DateTime DataFinal { get; set; }
//outros campos...
}
I have a C # API that receives the class:
[HttpPost("ObterProvisoes")]
public JsonRes...
In an ajax request it returns the following:
{
"og:locale":"pt_BR",
"og:type":"article",
"og:title":"Um titulo qualquer",
"og:url":"http:\/\/www.umsite.com.br\/uma-url\/"
}
My request:
$.ajax({
type: "GET",...
My php script returns a json, but when js is going to read json it says error.
Butcopyingandpastingthesamejsonintoavalidator(ex: link ) says it's correct.
For those who can help me, I appreciate it.
Edit: follows json
{"ArrayTopFiveIten...
Well it's as follows. I have the following code structure:
A div called part-sec that brings the entire contents of the product. The price-product div comes with the price. So far so good. But below I have another div with the sizes and when...
I'm having a problem with the JSON return, and I've researched and found no solution.
I have the following requisition:
var url = 'http://zcash.flypool.org/api/miner_new/t1UjazwJJnrUGoPh4GJYJ9FV6sYFzYg6H63?callback=?';
$.getJSON(url, func...
Good night,
I'm trying to pass an array to json but it only passes the last variable
function GetSuppliersView() {
global $db;
global $id;
global $type;
try{
$query = $db->query("SELECT * FROM suppliers WHERE id = $...
I have a database in json and inside it there is a style object in which it has an inline css code, such as:
"padding: 90px 0px 20px 0px; background: # 000000; display: block;"
Let's say the return would be:
{
"style" : "padding: 90px 0p...
I'm trying to display a JSON structure that will be built by MySQL , but I would like to separate the results into groups according to the field names I set in select and would like something like:
minha_array
carro
carro 1...
I'm trying to make a line chart with php and mysql like this: jsfiddle based on that tutorial .
My graph only returns empty with undefined columns:
The idea is to make a graph where it contains 1 line per technician.
Follow the fil...
Hello.
Home
I have the following code: JsFiddle
Home
In it I have 6 checkbox from 0 to 5 stars, and when I click on a checkbox it filters a json displaying the hotel that has such a star so everything is fine. The problem comes when I select...