Next I'm creating a webapi (I'm using the Entity Framework) with two classes, Course and Discipline, where the course has the Id of a course, I created it as follows:
public class Curso
{
public int Id { get; set; }
public string Nome...
(This project is being developed with Spring Boot + Thymeleaf) I have an html page that will work as a questionnaire containing more or less 100 questions (the code below is just an example). Each question has 4 inputs.
<div>
<inp...
Hello! I am sending a Json through an HttpClient and it is returning an error about header. Does anyone know what it can be?
JsonDeDados = sender.sendMessageDATA();
List<NameValuePair> urlParameters = new ArrayList<NameVal...
How do I get the given 'distance' in JSON in this example?
$url = "https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=86015-810&destinations=86830-000&key=AIzaSyDL6_dJ-Mbi_03_g6lHhWibxY22Z2UeYZQ";
$jso...
How do I group a json according to a field?
I have the following json:
{
"origem": [
{
"id": 154826,
"nm": "",
"tp": "",
"am": "",
"sg": "SAO",
"sq": 925
},
{
"id": 2289,
"nm": "...
I want to map the list of questions and throw them in the questions property of my JSON object, but at the prompt gives this error:
"ERROR in src / app / form / questions / questions.component.ts (19,5): error
TS2322: Type 'Subscription'...
Good evening guys, I need some help, it's simple but I'm curled up.
I have this combo inside a MODAL, it happens that the fields of this modal I populate everything by javascript / Json searching the data of a database.
MODAL
<!-- Grid c...
I'm migrating from Ionic 1 to 3, and how many changes.
I created my login API, with a token:
HereIputmyauthorizationcodeforaccessingtheAPI.AndheretheresultinJSON: ion-contentpaddingid="page8" style="background-color:#050505;">
<...
I am communicating with Behance API and I have the following script written in Angular 1.5.5:
var app = angular.module('PortfolioApp', []);
app.controller('PortfolioCtrl', function($scope, portfolioFactory) {
portfolioFactory.getBehance(...