差分

提供: fukudat.net
ナビゲーションに移動検索に移動
1,341 バイト追加 、 2021年8月21日 (土) 00:18
npm で angular/cli をインストール.
<pre>
$ npm install --global @angular/cli @angular/core
</pre>
https://www.techiediaries.com/updating-angular-cli-projects/ を参考。
Version 7.x.x にあげる場合、以下を実行する。最新版にあげるなら、以下を実行する。
<pre>
$ ng update @angular/cli@7 @angular/core@7
</pre>
最新版にあげるなら、特定の Version 例えば 7.x.x にあげる場合、
<pre>
$ ng update @angular/cli @7 @angular/core@7
</pre>
<pre>
$ npm install rxjs rxjs-compat
</pre>
export class AppModule { }
</pre>
 
=== Google Maps ===
詳しくは、https://angular-maps.com/ を見るべし。
 
インストールは、
<pre>
$ npm i @agm/core --save
</pre>
 
Mapの高さを指定しなければならない。そこで、テンプレートに
<pre>
<agm-map [style.height]="mapHeight" ...></agm-map>
</pre>
として、xxx.component.ts に、
<pre>
import { HostListener } from '@angular/core';
 
mapHeight = "600px";
 
@HostListener('window:resize')
onResize(): void {
const height = window.innerHeight;
this.mapHeight = (ウィンドウの高さから計算される Map のサイズ) + "px";
}
</pre>
とすると良い。
== Tips ==
</pre>
=== LifeCycle Hooks ===https://angular.jp/guide/lifecycle-hooks 参照。 * <code>ngOnChanges()</code>: data bound input property に値がセットあるいはリセットされた時に呼ばれる。非常に頻繁に呼び出されるので、パフォーマンスへの影響が大きい。* <code>ngOnInit()</code>: 最初に表示される際に data bound property を表示し、コンポーネントの input property をセットした後に、呼び出される。* <code>ngDoCheck()</code>* <code>ngAfterContentInit()</code>* <code>ngAfterContentChecked()</code>* <code>ngAfterViewInit()</code>* <code>ngAfterViewChecked()</code>* <code>ngOnDestroy()</code> [[Category:Programming]][[Category:How-To]]

案内メニュー