«angular» 태그된 질문

Google의 웹 프레임 워크 인 Angular (AngularJS와 혼동하지 않아야 함)에 대한 질문 개별 버전에 국한되지 않은 각도 질문에는이 태그를 사용하십시오. 이전 AngularJS (1.x) 웹 프레임 워크의 경우 angularjs 태그를 사용하십시오.

4
Angular CLi가 생성 한 "spec.ts"파일은 무엇입니까?
나는 Angular 2 (그리고 Angular는 일반적으로 ...)를 처음 사용하고 매우 매력적입니다. Angular CLi 를 사용하여 프로젝트를 생성하고 제공하고 있습니다. 비록 작은 학습 프로젝트에서는 필요 이상으로 많은 것을 생산하지만 잘 작동하는 것 같습니다. 그러나 그것은 예상됩니다. spec.ts프로젝트의 각 각도 요소 (구성 요소, 서비스, 파이프 등)에 대해 생성되는 것으로 나타났습니다 . 주변을 …

27
NPM 설치 오류 : '… nt-webpack-plugin“:”0'근처에서 구문 분석하는 동안 예기치 않은 JSON 입력 종료
새로운 Angular 5 프로젝트를 생성 할 때 : 노드 버전 : 8.9.2 npm 버전 : 5.5.1 내 명령은 npm install -g @angular/cli 오류는 npm ERR! **Unexpected end of JSON input while parsing near '...nt-webpack-plugin":"0'** npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Aashitec\AppData\Roaming\npm-cache\_logs\2017-12-06T13_10_10_729Z-debug.log 오류 …


10
RxJS Subject 또는 Observable의 현재 가치를 얻는 방법?
Angular 2 서비스가 있습니다. import {Storage} from './storage'; import {Injectable} from 'angular2/core'; import {Subject} from 'rxjs/Subject'; @Injectable() export class SessionStorage extends Storage { private _isLoggedInSource = new Subject<boolean>(); isLoggedIn = this._isLoggedInSource.asObservable(); constructor() { super('session'); } setIsLoggedIn(value: boolean) { this.setItem('_isLoggedIn', value, () => { this._isLoggedInSource.next(value); }); } } 모든 것이 잘 …
206 javascript  angular  rxjs 



9
npm WARN…의 피어가 필요하지만… 피어 종속성을 직접 설치해야합니다
github 에서 다운로드 한 프로젝트를 실행하려고했습니다 . 불행히도 npm install다음과 같은 경고가 표시되었습니다. 이 질문 에 따라 버전을 변경하려고했습니다 . 그러나 일부 패키지에는 다른 패키지가 여러 버전이 필요하기 때문에 문제가있었습니다. 다음 두 줄을 고려하십시오. npm WARN @angular/cdk@2.0.0-beta.10 requires a peer of @angular/core@^4.3.0 but none is installed. You must install peer …

6
처리되지 않은 약속 거부 란 무엇입니까?
Angular 2를 배우기 위해 튜토리얼을 시도하고 있습니다. 다음과 같은 오류가 발생합니다. (node:4796) UnhandledPromiseRejectionWarning: Unhandled promise rejection (r ejection id: 1): Error: spawn cmd ENOENT [1] (node:4796) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node. js process with a non-zero …

15
각도 2 확인란 양방향 데이터 바인딩
나는 Angular2를 처음 접했고 약간의 문제가 있습니다. Login-Component-HTML에는 두 가지 확인란이 있는데, Login-Component-TypeScript에 두 가지 방식으로 데이터 바인딩을 바인딩하려고합니다. 이것은 HTML입니다. <div class="checkbox"> <label> <input #saveUsername [(ngModel)]="saveUsername.selected" type="checkbox" data-toggle="toggle">Save username </label> </div> 그리고 이것은 Component.ts입니다. import { Component, OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { …



23
'Observable <Response>'유형에 'map'특성이 없습니다.
Angular에서 API를 호출하려고 하는데이 오류가 발생합니다. Property 'map' does not exist on type 'Observable&lt;Response&gt;' 이 비슷한 질문에 대한 답변이 내 문제를 해결하지 못했습니다 : Angular 2 베타 17 : 'Observable &lt;Response&gt;'유형에 'map'속성이 없습니다 . Angular 2.0.0-beta.17을 사용하고 있습니다.

7
다른 모듈의 컴포넌트 사용
angular-cli로 생성 된 Angular 2.0.0 앱이 있습니다. 구성 요소를 작성하고 추가 할 때 AppModule 선언 배열에 모두 작동합니다. 구성 요소를 분리하기로 결정 했으므로 TaskModule및 구성 요소를 만들었습니다 TaskCard. 이제 TaskCard구성 요소 중 하나 AppModule에서Board 구성 요소) 구성 . 앱 모듈 : import { BrowserModule } from '@angular/platform-browser'; import { NgModule …

12
설치된 앵귤러 클리의 버전을 확인하고 있습니까?
내 컴퓨터에 전체적으로 설치된 특정 버전의 angular-cli를 확인하는 방법이 있습니까? 저는 Windows 환경에 있습니다. npm -v 와 node -v 는 각각 npm과 node의 버전 만 제공하며 ng 명령을 찾을 수 없습니다 . 작업중 인 프로젝트를 실행하려고하는데 npm을 사용하여 이전 버전의 angular-cli에서 실행되었습니다. 그러나 다른 데모 프로젝트를 설치 한 후 특정 …

4
TypeScript / Angular2에서 인터페이스 및 모델을 사용하는 경우
최근에 TypeScript를 사용하여 Angular 2에 대한 자습서를 보았지만 언제 인터페이스를 사용하고 언제 모델을 사용하여 데이터 구조를 보유하는지 확실하지 않습니다. 인터페이스 예 : export interface IProduct { ProductNumber: number; ProductName: string; ProductDescription: string; } 모형의 예 : export class Product { constructor( public ProductNumber: number, public ProductName: string, public ProductDescription: string …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.