map() 메서드는 호출 배열의 모든 요소에 대해 제공된 함수를 호출한 결과로 채워진 새 배열을 만듭니다.
const numbers = [1, 2, 3, 4, 5]; const doubled = numbers.map(num => num * 2); console.log(doubled); // Output: [2, 4, 6, 8, 10]
먼저 cars.json이라는 JSON 파일을 만듭니다.
[ { "name": "Toyota Camry", "model": "2023", "image": "https://example.com/toyota_camry.jpg" }, { "name": "Honda Accord", "model": "2022", "image": "https://example.com/honda_accord.jpg" }, { "name": "Tesla Model 3", "model": "2024", "image": "https://example.com/tesla_model_3.jpg" } ]
HTML 파일 index.html을 만들고 JavaScript를 사용하여 자동차 정보를 가져오고 표시합니다.
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Car Display</title> <style> .car { border: 1px solid #ddd; padding: 10px; margin: 10px; text-align: center; } .car img { width: 100px; height: auto; } </style> <h1>Car Information</h1> <div id="car-container"></div> <script> // Here we have Fetch the car data fetch('cars.json') .then(response => response.json()) .then(data => { const carContainer = document.getElementById('car-container'); carContainer.innerHTML = data.map(car => ` <div class="car"> <h2>자바스크립트 map() 메서드 <p>Model: ${car.model} <img src="${car.image}" alt="자바스크립트 map() 메서드"> `).join(''); }) .catch(error => console.error('Error fetching the car data:', error)); </script>
cars.json 파일을 HTML 파일과 동일한 디렉터리에 배치하거나 그에 따라 가져오기 URL을 조정하세요
위 내용은 자바스크립트 map() 메서드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!