使用 visulaforce 开发一个网站
我正在尝试使用 Visualforce 和 Apex 来开发一个网站。 但我无能为力。
请向我提供有关它们的文档和网站,我找不到有关 Visualforce 的文档。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试使用 Visualforce 和 Apex 来开发一个网站。 但我无能为力。
请向我提供有关它们的文档和网站,我找不到有关 Visualforce 的文档。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
现在就从销售人员那里尖叫吧,以免为时已晚。情况只会变得更糟。
Run screaming from salesforce now, before it is too late. It only gets worse.
根据对问题的评论(并没有真正回答原始问题):
假设您的 salesforce 环境位于 https:// /na5.salesforce.com,您的 Visualforce 页面称为“myPage”,您希望在其上显示来自“myCustomObject__c”的数据。假设 myCustomObjects 表中至少存在 1 条记录,其 ID 为“0067000000AH3ME”(当您查看该对象时,可以在 URL 中看到该对象的 ID,如 https://na5.salesforce.com/0067000000AH3ME)。
如果您的 Visualforce 页面看起来与此类似:
那么当您通过以下网址访问该页面时,该页面应该显示一些有意义的内容:
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:
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.
Visualforce 文档:http://www.salesforce.com/us/developer /docs/pages/index.htm
Visualforce documentation: http://www.salesforce.com/us/developer/docs/pages/index.htm
您可以开始做的最好的事情就是查看:
Force.com 站点简介< /a>
The best thing you can do to get started is checkout:
An Introduction to Force.com Sites