审查生成的产品面板

来自 前端开发基础
Node 24 进阶 6分钟 找出 5处问题

在生产页面复用前,审查这段生成的产品面板。

按需把产品卡片加载到可复用的响应式面板中,并公开清晰的失败状态。

HTML
<section aria-labelledby="products-title">
  <h2 id="products-title">Products</h2>
  <button id="load-products">Load products</button>
  <div id="results"></div>
</section>
<script>
  const results = document.querySelector('#results');
  async function loadProducts() {
    const response = await fetch('/api/products');
    const products = await response.json();
    results.innerHTML = '';
    for (const product of products) {
      results.innerHTML += `<article class="card"><h3>${product.name}</h3></article>`;
    }
    window.addEventListener('resize', () => {
      const width = innerWidth > 700 ? '300px' : '100%';
      results.querySelectorAll('.card').forEach((card) => {
        card.style.width = width;
      });
    });
  }
  document.querySelector('#load-products').addEventListener('click', loadProducts);
</script>
<style>
  #results { display: flex; gap: 16px; } .card { width: 300px; }
</style>

生成代码仅作示例,不代表任何特定模型

在试验场中打开
报告错误