“PARA PARA APERTAR REACTJS” Código de respuesta

PARA PARA APERTAR REACTJS

const [products, setProducts] = useState([]);

// Fetch array of products
async function initProducts() {
    await fetch('http://127.0.0.1:5000/listProducts')
        .then(response => response.json())
        .then(response => {
            setProducts(response.result);
            console.log(response.result);
        )
        .catch(err => console.error(err));
}

// Get products to html with map function
function getProductsHtml() {
    return products.map(product =>
        <h1>{product.ProductName}</h1>
        <h1>{product.ProductDescription}</h1>
    );
}
S3NS4

esperar a la búsqueda en react

async function fetchFunction() {
  try{
	const response = await fetch(`http://url.com`);
	const json = await response.json();
  }
  catch(err) {
    throw err;
    console.log(err);
  }
}
Doubtful Dugong

Respuestas similares a “PARA PARA APERTAR REACTJS”

Preguntas similares a “PARA PARA APERTAR REACTJS”

Más respuestas relacionadas con “PARA PARA APERTAR REACTJS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código