我已经使用 CLI 安装了最新版本的 Angular。根目录下有 package.json。我运行命令:npm install
. 它安装了依赖项。
当我尝试在应用程序中使用包时,pipe
或component
类似:
import * as _ from 'lodash';
它找不到这个依赖。如何在新的 Angular 中使用和安装 npm 包?
我已经使用 CLI 安装了最新版本的 Angular。根目录下有 package.json。我运行命令:npm install
. 它安装了依赖项。
当我尝试在应用程序中使用包时,pipe
或component
类似:
import * as _ from 'lodash';
它找不到这个依赖。如何在新的 Angular 中使用和安装 npm 包?
安装依赖项的正确方法是使用package json。
因此需要在"dependencies": {}
section 中将包添加到该文件中。
然后npm install
在放置此文件的根目录中运行。在 Angular 了解所有依赖项之后,您可以将它们导入组件、管道等。
安装和平时一样
npm i --save lodash
访问https://www.npmjs.com/package/lodash
阅读这篇文章,了解如何将 lodash 与 angular 一起使用。