我在 angular 应用中有 vendor.js 和 main.js,我想推迟加载这些脚本

问题描述

my console screenshot 在下面的图像中,我在 angular 应用程序中有 vendor.js 和 main.js,我想推迟加载这些脚本,但在我的项目中在哪里执行 这是我的组件。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;
  }
}

index.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>

解决方法

检查根文件夹中的 index.html 文件,并删除加载这些文件的相关脚本标记。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...