«angular6» 태그된 질문

30
“@ angular-devkit / build-angular”모듈을 찾을 수 없습니다
Angular 6.0.1로 업데이트 한 후 다음과 같은 오류가 발생합니다 ng serve. Could not find module "@angular-devkit/build-angular" from "/home/Projects/myProjectName". Error: Could not find module "@angular-devkit/build-angular" from "/home/Projects/myProjectName". at Object.resolve (/home/Projects/myProjectName/node_modules/@angular-devkit/core/node/resolve.js:141:11) at Observable.rxjs_1.Observable [as _subscribe] (/home/Projects/myProjectName/node_modules/@angular-devkit/architect/src/architect.js:132:40) ng update모든 것이 정상이라고 말합니다. node_modules폴더를 삭제 하고 새로 npm install설치해도 도움이되지 않았습니다. 내 프로젝트는 ng2-admin …

7
Angular 6에서 'ng serve'를 통해 환경을 설정하는 방법
Angular 5.2 앱을 Angular 6으로 업데이트하려고합니다. Angular 업데이트 가이드 ( angular-cliv6 업데이트 포함)의 지침을 성공적으로 따랐 으며 이제는 ng serve --env=local 그러나 이것은 나에게 오류를 준다 : 알 수없는 옵션 : '--env' 여러 환경 ( dev/local/prod)을 사용하는데 이것이 Angular 5.2에서 작동하는 방식입니다. Angular 6에서 환경을 어떻게 설정합니까?

20
오류 : 데이터 경로“.builders [ 'app-shell']”에 'class'속성이 있어야합니다.
응용 프로그램을 실행하는 동안이 오류가 발생합니다. 내 응용 프로그램의 세부 정보는 다음과 같습니다. Angular CLI: 7.3.3 Node: 10.15.1 Angular: 7.2.7 @angular-devkit/architect -0.13.3 @angular-devkit/build-angular- 0.800.1 @angular-devkit/build-optimizer - 0.800.1 @angular-devkit/build-webpack - 0.800.1 @angular-devkit/core -7.3.3 @angular-devkit/schematics -7.3.3 @angular/cli -7.3.3 @ngtools/webpack -8.0.1 @schematics/angular -7.3.3 @schematics/update 0.13.3 rxjs 6.3.3 typescript 3.2.4 webpack 4.30.0 이미 캐시 …
160 angular6  angular7 

14
Angular- "내 보낸 멤버 'Observable'이 없습니다"
타입 스크립트 코드 : import { Injectable } from '@angular/core'; import { Observable } from 'rxjs/Observable'; import { of } from 'rxjs/observable/of'; import { Hero } from './hero'; import { HEROES } from './mock-heroes'; @Injectable({ providedIn: 'root' }) export class HeroService { constructor() { } getHeroes(): Observable<Hero[]> { return of(HEROES); …

5
Angular 6에서 서비스를 생성 할 때 Injectable 데코레이터와 함께 제공되는 목적은 무엇입니까?
Angular CLI에서 서비스를 생성 할 때 인젝터 블 데코레이터의 기본 값이 'root'인 'provided in'특성을 가진 메타 데이터가 추가됩니다. @Injectable({ providedIn: 'root', }) 정확히 무엇을 제공합니까? 이것이 전체 응용 프로그램에 대해 '전역'유형의 싱글 톤 서비스처럼 서비스를 제공한다고 가정하고 있지만 AppModule의 공급자 배열에서 이러한 서비스를 선언하는 것이 더 깨끗하지 않습니까? 최신 정보: …
136 angular  angular6 

11
CSS에서 CSS로 각도 cli
설명서를 읽었으며 사용 scss하려면 다음 명령을 실행해야합니다. ng set defaults.styleExt scss 그러나 그렇게하고 파일을 만들 때 여전히 콘솔 에서이 오류가 발생합니다. styles.bundle.js:33Uncaught Error: Module build failed: Error: ENOENT: no such file or directory, open '/Users/Egen/Code/angular/src/styles.css'(…)


4
여러 ng 콘텐츠
ng-contentAngular 6에서 다중 을 사용하여 사용자 지정 구성 요소를 만들려고하는데 이것이 작동하지 않으며 이유를 모르겠습니다. 이것은 내 구성 요소 코드입니다. <div class="header-css-class"> <ng-content select="#header"></ng-content> </div> <div class="body-css-class"> <ng-content select="#body"></ng-content> </div> 이 구성 요소를 다른 장소에서 사용하고 다음과 같이 두 개의 다른 HTML 코드를 내부 body및 헤더 select에 렌더링하려고합니다 ng-content. <div …

3
Angular 6-서비스 주입 대신 @ ngrx / store를 사용하는 이유
나는 최근 @ ngrx / store로 Angular 6을 배우고 있는데 튜토리얼 중 하나는 상태 관리를 위해 @ ngrx / store를 사용하는 것이지만, @ ngrx / store를 사용하는 이점을 이해하지 못합니다. 예를 들어 간단한 로그인 및 가입 작업의 경우 이전에는 서비스 (AuthService라고하겠습니다) 를 사용하여 백엔드 API를 호출하고 AuthService에 "userInfo"또는 "token"을 저장하고 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.