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 1 year has passed since last update.

〇【PowerApps開発ポリシー(その2)】コレクション変数・グローバル変数の範囲は、サインインユーザ単位なのか調べてみた

Last updated at Posted at 2022-09-19

変数には、コレクション変数・コンテキスト変数・グローバル変数があるが状況に応じて使い分けるポリシーが必要である。

・グローバル変数   アプリ全体で利用できる変数
・コンテキスト変数 画面内で利用できる変数
・コレクション変数  アプリ全体で利用できる変数

と、ここまでは、ググればすぐわかる情報であるが
ユーザ単位(セッション単位)に、グローバル変数、コレクション変数は共通利用なのか情報がなかったので調べてみた

調べた結果はコレクション変数・グローバル変数の範囲は、サインインユーザ単位で保持されることがわかった。

<検証方法>
以下のアプリを作成
image.png
ボタン1:Set(_count, _count+1)
ボタン2:Collect(TestCol, {Itm:"a"});

変数がユーザを超えて共通利用されていれば、AさんBさん同じ値になるはずであるがならなかった
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?