Salesforce:使用VisualFocre创建用户表单

时间:2018-03-17 12:47:49

标签: salesforce visualforce force.com sfdc

我有以下要求创建VF页面。 我创建了一个名为 DormsApplicants__c 的自定义对象。有几个字段,但为了示例的目的,我们将只使用一个名为 First_name__c 的字段。

我的主要需求是创建一个VF页面,该页面可供组织外(即客户)使用,他们可以将数据输入到表单中,然后在自定义对象中创建记录 DormsApplicants__c 即可。为此,我创建了一个网站(SITE.COM),然后创建了一个VF页面(称为TEST)我将此页面(TEST)定义为网站上的主页。

这是我的页面:

<apex:page standardController="DormsApplicants__c" sidebar="false">
<apex:form id="theForm">
<apex:pageBlock title="TEST">
    <apex:inputText title="TEXTBOX1" label="TEXTBOX2"  value="{!DormsApplicants__c.First_name__c}"/>
    <apex:commandButton value="save" action="{!save}"/>
    </apex:pageBlock>
</apex:form>

Image A1 - This is what users see outside the organization.

当用户尝试点击“保存”时,他会收到以下错误:

Image B1 - error on save

当然没有创建记录。我很想知道问题是什么?

0 个答案:

没有答案