Modificación fetch

This commit is contained in:
Traym17 2022-07-11 22:03:25 -06:00
parent 3fc5e59575
commit ce6d6f1553
1 changed files with 37 additions and 9 deletions

View File

@ -1,13 +1,45 @@
import React, { useState } from 'react'; import React, { useState } from 'react';
import { InputText } from 'primereact/inputtext'; import { InputText } from 'primereact/inputtext';
import { Button } from 'primereact/button'; import { Button } from 'primereact/button';
import { InputTextarea } from 'primereact/inputtextarea';
import { Dropdown } from 'primereact/dropdown';
const FormAdminSistema = () => { const FormAdminSistema = () => {
const registrarAdmin = () => { function registrarAdmin() {
console.log('holis'); var data = {
dni: "12687",
name: "hola",
last_name: "buuu",
email: "tmora4c@ucenfotec.ac.cr",
phone: 84664515,
password: "1203",
user_type: "1",
status: "2"
};
console.log(data);
fetch('http://localhost:4000/user/createAdminSystem/', {
cache: 'no-cache',
method: 'POST',
body: JSON.stringify(data),
headers: {
'Content-Type': 'application/json'
}
})
.then(
function (response) {
if (response.status != 200)
console.log('Ocurrió un error con el servicio: ' + response.status);
else
return response.json();
}
)
.then(
function (response) {
console.log(response);
}
)
.catch(
err => console.log('Ocurrió un error con el fetch', err)
);
} }
return ( return (
@ -44,8 +76,4 @@ const FormAdminSistema = () => {
) )
} }
const comparisonFn = function (prevProps, nextProps) { export default React.memo(FormAdminSistema);
return prevProps.location.pathname === nextProps.location.pathname;
};
export default React.memo(FormAdminSistema, comparisonFn);