欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angular7+underscore的使用

程序员文章站 2022-06-03 12:22:40
...

方式一

1.首先下载underscore

npm install underscore --save
npm install @types/underscore --save

2.在需要的模块引入underscore

import * as _ from 'underscore';

3.在需要的模块可以直接使用了

this.fileLists=_.reject(this.fileLists,(el)=>{
  return item.file.name==el.name;
})

方式二

1.首先下载underscore

npm install underscore --save
npm install @types/underscore --save

2.在angular.json文件中引入underscore源文件

"scripts": [
              "../node_modules/underscore/underscore.js"
            ]

3.在typings.d.ts中声明underscore

declare var _:any;

4.在需要的模块可以直接使用了,不需要import进来。

this.fileLists=_.reject(this.fileLists,(el)=>{
  return item.file.name==el.name;
})