[Salesforce]Lightning コンポーネント‐手順2:コンポーネント属性

前回手順1の続きとして、Lightningコンポーネント属性を共有します。

属性を追加する。

<aura:component implements="force:appHostable">
	<aura:attribute name="target" type="String" default="world"/>
    <h1>Hello, Lightning Component!!</h1>
    <h1>Hello, {!v.target}!</h1>
</aura:component>

説明:


	<aura:attribute name="target" type="String" default="world"/>

属性

<h1>Hello, {!v.target}!</h1>

属性と関連されている。

動作確認する。

https://[ yourdomain ]/c/CreateComponentAppliction.app
例えば、
https://testdaeheuitest-test11-dev-ed.lightning.force.com/c/CreateComponentAppliction.app

結果

Hello, Lightning Component!!
Hello, world!

投稿者: kinkun

保有資格 Salesforce Certified Platform App Builder T Salesforce Certified Platform Developer I Salesforce Certified Platform Developer II Salesforce Certified Administrator

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です