2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AngularのStateを確認できるChrome拡張機能「Angular state inspector」

Posted at

はじめに

AngularのStateを確認できるツール「Angular state inspector」の紹介をしていく。
Serviceクラスでのデータ管理の際、わざわざConsole.logとかしなくても値が確認できるようになる。データだけならDebugでも済むが、NgRx等の状態管理フレームワークを使っているなら楽に確認できる。

インストール

こちらから対象のChrome拡張機能をインストールする。

Angularプロジェクトを起動

$ ng serve --open

ChromeのDevToolsからデータを確認する

  1. DevToolsを開いたら左上の「Select an element in the page to inspect it」を選択
  2. 見たいデータが表示されている箇所を選択。
  3. Consoleに
Angular state inspector shortcuts:
    $scope/$context: Element debug info
    $getDetectChanges()/$tick()/$apply(): Trigger change detection cycle

が表示されたら、$scopeを入力してEnterを押すとServiceクラスの状態がConsoleに表示され、データを確認できる。angular-state-inspector-example.gif

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?