Visualforce-6.表单(Form)


1.示例代码:

<apex:page standardController="Account">
    <h1>Edit Accounth1>
    <apex:form>
        <apex:inputField value="{! Account.Name }"/>
        <apex:commandButton action="{! save }" value="Save" />
    apex:form>
apex:page>

代码解析:

  • :定义客户标准控制器"Account"
  • :它将内部的所有内容打包成页面操作的一部分,并将其发送回服务器。※如果需要将数据发送回 Salesforce,大多数情况下会在 中进行
  • :为与之关联的记录数据字段创建单页表单字段。可以通过引用 value 属性中相关字段的表达式来实现
  • :将一个按钮添加到页面的用户界面。单击此按钮时会触发一个操作。这种情况下,操作是标准控制器中的 save()操作方法。与 一样,通过引用要提供给 操作属性的表达式中调用的操作方法,将 与操作关联起来。

预览结果:

2.添加字段标签和平台样式

<apex:page standardController="Account">
    <apex:form>
    <apex:pageBlock title="Edit Account">
        <apex:pageBlockSection>
            <apex:pageBlockSection columns="1">
                <apex:inputField value="{! Account.Name }"/>
                <apex:inputField value="{! Account.Phone }"/>
                <apex:inputField value="{! Account.Industry }"/>
                <apex:inputField value="{! Account.AnnualRevenue }"/>
            apex:pageBlockSection>
        apex:pageBlockSection>
        <apex:pageBlockButtons>
            <apex:commandButton action="{! save }" value="Save" />
        apex:pageBlockButtons>
    apex:pageBlock>
    apex:form>
apex:page>

代码解析:

  • :根据标准或自定义对象字段的类型呈现相应的输入小部件。例如,当使用 标记来显示日期字段时,表单上会显示一个日历小部件。如果使用 标签来显示选项列表字段,会显示一个下拉列表。

   可用于捕获任何标准或自定义对象字段的用户输入,并尊重字段定义中设置的任意元数据,例如该字段是必需的还是唯一的,或者当前用户是否拥有查看或编辑权限。

预览结果:

3.显示表单错误和消息

  •   :显示任何表单处理错误或消息。当出现问题时,页面应提供有用的反馈,例如缺少必填字段或字段值未通过验证。标准控制器会处理这一切。只需要告诉标准控制器信息放置在页面的哪个位置。
<apex:page standardController="Account">
    <apex:form>
    <apex:pageBlock title="Edit Account">
        <apex:pageMessages/>
        <apex:pageBlockSection>
            <apex:pageBlockSection columns="1">
                <apex:inputField value="{! Account.Name }"/>
                <apex:inputField value="{! Account.Phone }"/>
                <apex:inputField value="{! Account.Industry }"/>
                <apex:inputField value="{! Account.AnnualRevenue }"/>
            apex:pageBlockSection>
        apex:pageBlockSection>
        <apex:pageBlockButtons>
            <apex:commandButton action="{! save }" value="Save" />
        apex:pageBlockButtons>
    apex:pageBlock>
    apex:form>
apex:page>

4.编辑相关记录


        
            
                
                    Edit
                
                 
                
                    Del
                
            
            
            
            
        

预览结果:

Resources

  • Using Input Components in a Page
  • Using Standard Controller Actions
  • Valid Values for the $Action Global Variable
  • Standard Controllers