Questions tagged as 'json'

0
answers

Error creating a Schema with a field of type file in NodeJs

const mongoose = require('mongoose'); const {Schema} = mongoose; const empleado_schema = new Schema({ dni:{type:String,required:true, unique:true}, nombre:{type:String, required:true}, apellidos:{type:String, required:true},...
asked by 03.12.2018 / 19:51
0
answers

how to make an extension of values in a list without modifying the other python

The problem I have is that in a list that believes a merger of two lists with dictionaries, I repeat the records then what I'm doing is that I verify which are repeated to put the missing values in the first in the first record, but when doing t...
asked by 30.11.2018 / 20:59
0
answers

show data json in html table imported in link using php

I want to be able to show in an html table the following elements that a json is bringing me but I have no idea how to do it ... <?php // Initialize cURL and make the request $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://cashaff...
asked by 29.11.2018 / 05:14
0
answers

I have a bank of images in firebase and I want to show it in my html in carousel mode but it is not shown to me and it does not show error

<div class="container"> <div class="row"> <div id="carouselExampleControls" class="carousel slide" data-ride="carousel"> <div class="carousel-inner" id="galeria"> </div...
asked by 28.11.2018 / 16:34
2
answers

Errors with jQuery

I am making a web page on which I am using jQuery (more specifically this library: link ). I have this function: $(document).ready(function(){ var documento=prueba; function obtener_modificacion(){ $.ajax({...
asked by 26.11.2018 / 17:20
1
answer

Problem with variables Date in Spring Boot - Angular 6

When dealing with data of type Date I am having problems. On the server ( Spring Boot ) I am collecting a Date field from MySQL , and this information is correct in the Spring Boot Model when debugging. But if I see that call...
asked by 23.11.2018 / 21:13
1
answer

How to return values with JSON in a multiselect

I have the following index, which includes a multiselect (fselect.css and fselect.js) which is shown in the following image: and my code is as follows: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <t...
asked by 21.11.2018 / 20:36
0
answers

How to get wordpress records and export them in a .csv with php?

I have been trying to get user information from a wordpress database and export it in a .csv file This is the code I'm using: <section> <div> <?php $array_export_cvs = array(); $array_e...
asked by 21.11.2018 / 05:32
0
answers

Problem obtaining a parameter from the url (the ID)

I'm trying to take the id parameter that I'm passing through the url to get the whole json from just the id but by doing console.log it tells me it's undefined but the id is passed correctly by the url only that I can not get, then I have...
asked by 01.12.2018 / 14:14
0
answers

Show JSON Object from MongoDB

I have a problem showing an array of a JSON object from MongoDB. The Ajax request works correctly and the data is displayed well by the console. My problem comes in the view, when I try to show that data in the html and the component cl...
asked by 19.11.2018 / 16:47