SFDC:Lightningアプリ開発『Local IDs』と『Global IDs』

Lightning Componentsには『Local IDs』と『Global IDs』の二種類のIDが宣言できるようになっています。 Local IDsの宣言はこんな感じです。『aura:id=』というように宣言します。 <ui:button aura:id="button1" label="button1"/> Global IDsの宣言はこんな感じです。『id=』というように宣言します。 <div id="{!globalId + '_footer'}"></div> 次のように宣言して確認してみました。 </ui:button>