-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptPatientCuatro.js
25 lines (22 loc) · 1.21 KB
/
scriptPatientCuatro.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const nombre = document.querySelector('[nombre]');
const sexo = document.querySelector('[sexo]');
const edad = document.querySelector('[edad]');
const altura = document.querySelector('[altura]');
const peso = document.querySelector('[peso]');
const alergias = document.querySelector('[alergias]');
const enfermedades = document.querySelector('[enfermedades]');
const contacto = document.querySelector('[contacto]');
const paciente = "-MtKQOjlf5ehHTtJV2BE";
fetch('https://emma-asistente-default-rtdb.firebaseio.com/ID/3ac35d1779c6404bb1f9bdacbaff7d9e/Pacientes.json')
.then(response => response.json())
.then(data => datosPaciente(data))
const datosPaciente = (data) => {
nombre.textContent = data[paciente]["Nombre(s)"] + " " + data[paciente]["Apellido-Paterno"] + " " + data[paciente]["Apellido-Materno"];
sexo.textContent = data[paciente]["Sexo"];
edad.textContent = `${(data[paciente]["Edad"])} años`;
altura.textContent = `${(data[paciente]["Estatura"])} cm`;
peso.textContent = `${(data[paciente]["Peso"])} kg`;
alergias.textContent = data[paciente]["Alergias"];
enfermedades.textContent = data[paciente]["Enfermedades"];
contacto.textContent = data[paciente]["Tel"];
}