0

下图中的控制台屏幕截图我在 Angular 应用程序中有 vendor.js 和 main.js,我想推迟加载这些脚本,但是在我的项目中执行它的位置是我的 component.ts


  getProductById(id: any): any {
    return this.products.find((product) => product._id === id);
  }
  increase(id: any): void {
    let product = this.getProductById(id);
    product.quantity = product.quantity + 1;
  }
  decrease(id: any): void {
    let product = this.getProductById(id);
    if (product.quantity > 0) product.quantity = product.quantity - 1;
  }
  addToCart(id: any): void {
    let product = this.getProductById(id);
    this.totalItem = this.totalItem + product.quantity;
  }
}

索引.html

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>DeferLoding</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
  <link rel="preconnect" href="https://fonts.gstatic.com">
  <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body class="mat-typography">
  <app-root></app-root>
</body>
</html>
4

0 回答 0