0
0

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 3 years have passed since last update.

AngularでAzure App Configurationにあるキーを参照してみる

Posted at

前回⇒AngularでAzure App Configurationの機能フラグを使ってみた
機能フラグは取得することができたが、格納したアプリケーション設定を参照できるか試してみた。

環境

Angular v12

必要なパッケージ

"@azure/app-configuration": "^1.3.0"
"@azure/identity": "^1.5.0"

準備

App Configurationで参照するキーを用意

「構成エクスプローラー」→「作成」でキーを作成する

image.png

コード

App Configurationに接続するclientを作成

  const conn = '接続文字列'; 
  const client = new AppConfigurationClient(conn);

キーの参照

  applicationSettingConfig = ''; // 参照したキー値を格納する変数
  const val = await client.getConfigurationSetting({ key: '参照したいキー' });
  console.log(val); // ←どんな値がとれてるか確認してみよう
  this.applicationSettingConfig = val.value === undefined ? '' : val.value;

結果

applicationSettingConfigを表示して👇のようにキーの値が表示できた。
(前回の機能フラグのコーディングも残してるのでそこは無視してください)

image.png

ソース

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?