在找一个集合操作类库,可以在指定位置插入和删除的。有大佬推荐下吗
1
sjn9588 2018-04-18 16:35:32 +08:00
lodash 吧。TS 好处之一就是只要有对应的 d.ts 文件能使用 JS 库。
|
2
banxi1988 2018-04-18 17:50:45 +08:00
1. JS 库即 TS 库
2. JS 库要让 TS 的编译系统识别需要 声明文件(.d.ts), 参考 : https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html 比如安装 lodash 可以使用 `npm install --save @types/lodash` 3. 如上一般的库都有 `@types/库名称` 对应的声明库。 你可以直接在 npm 上按此规则搜索。也可以在这里搜索: http://microsoft.github.io/TypeSearch/ 4. 你可以把 `.d.ts` 文件当作于 C/C++ 中的头文件。 |
3
Pastsong 2018-04-18 18:01:31 +08:00
DefinitelyTyped 了解一下
https://github.com/DefinitelyTyped/DefinitelyTyped |
4
momocraft 2018-04-18 18:09:26 +08:00
你想要的东西和 Array 的区别在哪
|