lodash 모듈을 가져 오는 데 어려움을 겪고 있습니다. npm + gulp을 사용하여 프로젝트를 설정하고 같은 벽을 계속 쳤습니다. 나는 일반 lodash를 시도했지만 lodash-es도 시도했습니다.
lodash npm 패키지 : (패키지 루트 폴더에 index.js 파일이 있음)
import * as _ from 'lodash';
결과 :
error TS2307: Cannot find module 'lodash'.
lodash-es npm 패키지 : (lodash.js에서 패키지 루트 폴더로 기본 내보내기)
import * as _ from 'lodash-es/lodash';
결과 :
error TS2307: Cannot find module 'lodash-es'.
꿀꺽 꿀꺽 꿀꺽 일과 웹 스톰 모두 같은 문제를보고합니다.
재미있는 사실은 오류가 없다는 것입니다.
import 'lodash-es/lodash';
… 물론 “_”는 없습니다 …
내 tsconfig.json 파일 :
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules"
]
}
내 gulpfile.js :
var gulp = require('gulp'),
ts = require('gulp-typescript'),
uglify = require('gulp-uglify'),
sourcemaps = require('gulp-sourcemaps'),
tsPath = 'app/**/*.ts';
gulp.task('ts', function () {
var tscConfig = require('./tsconfig.json');
gulp.src([tsPath])
.pipe(sourcemaps.init())
.pipe(ts(tscConfig.compilerOptions))
.pipe(sourcemaps.write('./../js'));
});
gulp.task('watch', function() {
gulp.watch([tsPath], ['ts']);
});
gulp.task('default', ['ts', 'watch']);
올바르게 이해하면 내 tsconfig의 moduleResolution : ‘node’가 import 문을 lodash 및 lodash-es가 설치된 node_modules 폴더를 가리켜 야합니다. 나는 또한 절대 경로, 상대 경로와 같은 여러 가지 수입 방법을 시도했지만 아무것도 작동하지 않는 것 같습니다. 어떤 아이디어?
필요한 경우 문제를 설명하기 위해 작은 zip 파일을 제공 할 수 있습니다.
답변
Typescript 2.0 에서이 작업을 수행하는 방법은 다음과 같습니다 (tsd 및 입력은 다음과 같은 이유로 더 이상 사용되지 않습니다).
$ npm install --save lodash
# This is the new bit here:
$ npm install --save-dev @types/lodash
그런 다음 .ts 파일에서
어느 한 쪽:
import * as _ from "lodash";
또는 (@Naitik이 제안한대로) :
import _ from "lodash";
차이점이 무엇인지 긍정적이지 않습니다. 우리는 첫 번째 구문을 사용하고 선호합니다. 그러나 일부는 첫 번째 구문이 작동하지 않는다고보고하고 다른 사람은 후자의 구문이 지연로드 된 웹 팩 모듈과 호환되지 않는다고 언급했습니다. YMMV.
2017 년 2 월 27 일 편집 :
아래 @Koert에 따르면 import * as _ from "lodash";
Typescript 2.2.1, lodash 4.17.4 및 @ types / lodash 4.14.53의 유일한 작동 구문입니다. 그는 다른 제안 된 가져 오기 구문에 “기본 내보내기 없음”오류가 발생한다고 말합니다.
답변
2016 년 9 월 26 일 업데이트 :
@Taytay의 답변에 따르면 몇 달 전에 사용한 ‘타이핑’설치 대신 다음을 사용할 수 있습니다.
npm install --save @types/lodash
해당 답변을 지원하는 몇 가지 추가 참조 사항은 다음과 같습니다.
여전히 타이핑 설치를 사용하는 경우 ” ‘–ambient’ ”및 ” ‘–global’ ”에 대한 아래 주석 (다른 사용자의 설명)을 참조하십시오.
또한 새로운 빠른 시작에서 config는 더 이상 index.html에 없습니다. 이제 systemjs.config.ts에 있습니다 (SystemJS를 사용하는 경우).
원래 답변 :
이것은 내 Mac에서 작동했습니다 ( 빠른 시작에 따라 Angular 2를 설치 한 후 ) :
sudo npm install typings --global
npm install lodash --save
typings install lodash --ambient --save
영향을받는 다양한 파일을 찾을 수 있습니다. 예 :
- /typings/main.d.ts
- /typings.json
- /package.json
Angular 2 빠른 시작은 System.js를 사용하므로 다음과 같이 index.html의 구성에 ‘map’을 추가했습니다.
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
},
map: {
lodash: 'node_modules/lodash/lodash.js'
}
});
그런 다음 내 .ts 코드에서 다음을 수행 할 수있었습니다.
import _ from 'lodash';
console.log('lodash version:', _.VERSION);
2016 년 중반부터 수정 :
@tibbus가 언급했듯이 일부 상황에서는 다음이 필요합니다.
import * as _ from 'lodash';
각도 2 종자 에서 시작하는 경우 가져 오기를 원하지 않는 경우 맵 및 가져 오기 단계를 건너 뛰고 tools / config / project.config.ts에서 lodash 행의 주석을 해제하십시오.
lodash로 테스트를 수행하려면 karma.conf.js의 파일 배열에 줄을 추가해야했습니다.
'node_modules/lodash/lodash.js',
답변
먼저 첫 번째 것들
npm install --save lodash
npm install -D @types/lodash
전체 lodash 라이브러리로드
//some_module_file.ts
// Load the full library...
import * as _ from 'lodash'
// work with whatever lodash functions we want
_.debounce(...) // this is typesafe (as expected)
또는 작업 할 함수 만로드
import * as debounce from 'lodash/debounce'
//work with the debounce function directly
debounce(...) // this too is typesafe (as expected)
UPDATE - March 2017
나는 현재 작업하고 ES6 modules
있으며 최근에는 다음과 lodash
같이 작업 할 수있었습니다 .
// the-module.js (IT SHOULD WORK WITH TYPESCRIPT - .ts AS WELL)
// Load the full library...
import _ from 'lodash'
// work with whatever lodash functions we want
_.debounce(...) // this is typesafe (as expected)
...
또는 import
구체적 lodash functionality
:
import debounce from 'lodash/debounce'
//work with the debounce function directly
debounce(...) // this too is typesafe (as expected)
...
참고 -차이 * as
는 필요하지 않습니다syntax
참고 문헌 :
행운을 빕니다.
답변
1 단계 : 의존성에 lodash를 포함하도록 package.json 파일을 수정하십시오.
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
"systemjs": "0.19.27",
"es6-shim": "^0.35.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"lodash":"^4.12.0",
"angular2-in-memory-web-api": "0.0.7",
"bootstrap": "^3.3.6" }
2 단계 : angular2 응용 프로그램에서 SystemJs 모듈 로더를 사용하고 있습니다. 그래서 lojs를 매핑하도록 systemjs.config.js 파일을 수정하고 있습니다.
(function(global) {
// map tells the System loader where to look for things
var map = {
'app': 'app', // 'dist',
'rxjs': 'node_modules/rxjs',
'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
'@angular': 'node_modules/@angular',
'lodash': 'node_modules/lodash'
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { main: 'main.js', defaultExtension: 'js' },
'rxjs': { defaultExtension: 'js' },
'angular2-in-memory-web-api': { defaultExtension: 'js' },
'lodash': {main:'index.js', defaultExtension:'js'}
};
var packageNames = [
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'@angular/router-deprecated',
'@angular/testing',
'@angular/upgrade',
];
// add package entries for angular packages in the form '@angular/common': { main: 'index.js', defaultExtension: 'js' }
packageNames.forEach(function(pkgName) {
packages[pkgName] = { main: 'index.js', defaultExtension: 'js' };
});
var config = {
map: map,
packages: packages
}
// filterSystemConfig - index.html's chance to modify config before we register it.
if (global.filterSystemConfig) { global.filterSystemConfig(config); }
System.config(config);})(this);
3 단계 : 이제 npm 설치
4 단계 : 파일에서 lodash를 사용합니다.
import * as _ from 'lodash';
let firstIndexOfElement=_.findIndex(array,criteria);
답변
Typescript 2.0부터 @types npm 모듈은 입력을 가져 오는 데 사용됩니다.
# Implementation package (required to run)
$ npm install --save lodash
# Typescript Description
$ npm install --save @types/lodash
이제이 질문에 대한 답변을 얻었으므로 lodash를 효율적으로 가져 오는 방법으로갑니다.
main.ts에서 전체 라이브러리를 가져 오는 안전한 방법
import 'lodash';
이것은 새로운 비트입니다.
필요한 기능으로 더 가벼운 lodash 구현
import chain from "lodash/chain";
import value from "lodash/value";
import map from "lodash/map";
import mixin from "lodash/mixin";
import _ from "lodash/wrapperLodash";
출처 : https://medium.com/making-internets/why-using-chain-is-a-mistake-9bc1f80d51ba#.kg6azugbd
추신 : 위 기사는 빌드 시간 개선 및 앱 크기 축소에 대한 흥미로운 기사입니다.
답변
다음 명령을 사용하여 프로젝트에서 lodash를 성공적으로 가져 왔습니다.
npm install lodash --save
typings install lodash --save
그런 다음 다음과 같은 방식으로 가져 왔습니다.
import * as _ from 'lodash';
그리고 systemjs.config.js에서 나는 이것을 정의했다 :
map: { 'lodash' : 'node_modules/lodash/lodash.js' }
답변
나는 정확히 같은 문제가 있었다, 그러나 Angular2 응용 프로그램에서,이 문서가 단지 그것을 해결 : https://medium.com/@s_eschweiler/using-external-libraries-with-angular-2-87e06db8e5d1#.p6gra5eli
기사 요약 :
- 라이브러리 설치
npm install lodash --save
- Lodash에 대한 TypeScript 정의 추가
tsd install underscore
- 스크립트 포함
<script src="node_modules/lodash/index.js"></script>
- SystemJS 구성
System.config({
paths: {
lodash: './node_modules/lodash/index.js' - 가져 오기 모듈
import * as _ from ‘lodash’;
당신의 경우에도 도움이되기를 바랍니다.