No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
カスタム Apex クラス型
属性には、Apex クラスに対応する型を指定できます。次の例は、Color Apex クラスの属性です。
1swfobject.registerObject("clippy.codeblock-0", "9");<aura:attribute name="color" type="docSampleNamespace.Color" />
2コレクションのサポート
属性に複数の要素が含まれている場合は、配列を使用します。
次の aura:attribute タグは、Apex オブジェクトの配列の構文を示します。
1swfobject.registerObject("clippy.codeblock-1", "9");<aura:attribute name="colorPalette" type="docSampleNamespace.Color[]" />
2