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>JavaScript 的 map() 方法 <p>Model: ${car.model} <img src="${car.image}" alt="JavaScript 的 map() 方法"> `).join(''); }) .catch(error => console.error('Error fetching the car data:', error)); </script>
確保將 cars.json 檔案放在與 HTML 檔案相同的目錄中或相應地調整取得 URL
以上是JavaScript 的 map() 方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!