使用 visulaforce 开发一个网站

发布于 2024-09-07 09:20:57 字数 116 浏览 4 评论 0 原文

我正在尝试使用 VisualforceApex 来开发一个网站。 但我无能为力。

请向我提供有关它们的文档和网站,我找不到有关 Visualforce 的文档。

I'm trying to develop a website using Visualforce with Apex.
But I'm unable.

Please me with the documents and websites regarding them, I'm unable to find docs regarded Visualforce.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

野侃 2024-09-14 09:21:40

现在就从销售人员那里尖叫吧,以免为时已晚。情况只会变得更糟。

Run screaming from salesforce now, before it is too late. It only gets worse.

一影成城 2024-09-14 09:21:35

根据对问题的评论(并没有真正回答原始问题):

假设您的 salesforce 环境位于 https:// /na5.salesforce.com,您的 Visualforce 页面称为“myPage”,您希望在其上显示来自“myCustomObject__c”的数据。假设 myCustomObjects 表中至少存在 1 条记录,其 ID 为“0067000000AH3ME”(当您查看该对象时,可以在 URL 中看到该对象的 ID,如 https://na5.salesforce.com/0067000000AH3ME)。

如果您的 Visualforce 页面看起来与此类似:

<apex:page standardController="myCustomObject__c">
   <apex:pageBlock title="Hi Javatechi">
      <p>You're viewing the {!myCustomObject__c.Name} record.</p>
   </apex:pageBlock>
   <apex:detail relatedList="false" />
</apex:page>

那么当您通过以下网址访问该页面时,该页面应该显示一些有意义的内容:
https://na5.salesforce.com/apex/myPage/?id=0067000000AH3ME< /a>

如果您能够使这个示例为您工作,那么其余的都像 ;和 也应该开始工作了。

Based on the comment to the question (doesn't really answer the original question):

Let's say your salesforce environment is on https://na5.salesforce.com, your visualforce page is called "myPage", and you want to display on it data from "myCustomObject__c". Let's also say that there exists at least 1 record in the table of myCustomObjects and it's ID is "0067000000AH3ME" (you can see the ID of the object in the URL when you view it like https://na5.salesforce.com/0067000000AH3ME).

If your visualforce page looks similar to this:

<apex:page standardController="myCustomObject__c">
   <apex:pageBlock title="Hi Javatechi">
      <p>You're viewing the {!myCustomObject__c.Name} record.</p>
   </apex:pageBlock>
   <apex:detail relatedList="false" />
</apex:page>

Then this page should display something meaningful when you visit it via this url:
https://na5.salesforce.com/apex/myPage/?id=0067000000AH3ME

If you'll be able to make this example work for you, all the rest like <apex:inputField> and <apex:commandButton> should start to work too.

同展鸳鸯锦 2024-09-14 09:21:24

您可以开始做的最好的事情就是查看:

Force.com 站点简介< /a>

The best thing you can do to get started is checkout:

An Introduction to Force.com Sites

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文