Salesforce apex:pageタグの使い方のサンプル

環境
Salesforce Apex

概要
Visualforceのapex:pageタグの属性でstandard controllerでオブジェクトを指定することができます。
Visualforce式で{! Account.name}と記載するとその取引先の名称をページに参照することができます。

使用例

<apex:page standardController="Contact">
    {!contact.firstname}
    {!contact.lastname}
    {!contact.owner.Email}
</apex:page>

 

Apex

Posted by arkgame