关于salesforce apex语言中自定义字段的更新

发布于 2024-11-11 07:09:00 字数 226 浏览 4 评论 0原文

我需要一些关于覆盖已作为记录存储在对象中的自定义字段的代码的建议。我创建了一个对象注册,其中包含一些字段,例如邮件 ID、密码和通过验证确认密码,然后我创建了包含这些字段的页面,并将这些详细信息保存到注册对象中。

然后我创建了另一个包含邮件 ID 和新密码的页面,因此我在这里面临一个问题,即我无法使用注册对象中的密码字段更新新密码。注册对象中的密码字段应使用新密码覆盖。

如果任何代码建议对我非常有帮助。

I need some suggestions for the code which overrides the custom field which already stored as record in object. I have created one object signup with some fields like mail id, password and confirm password with validation, then I have created page with those fields and I have save those details to the signup object.

Then I have created another page with mail id and new password, so here i am facing one problem that i am unable to update the new password with the password field in signup object.the password field in signup object should override with the new password.

If any suggestions with code is very helpful to me.

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

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

发布评论

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

评论(1

老子叫无熙 2024-11-18 07:09:00

首先,请记住,在 salesforce 中存储密码是不受欢迎的,特别是如果您是应用程序构建者(请参阅 此处

为了更新表单上的字段,您必须首先在后台加载它,最简单的方法是使用内置标准控制器功能,因为该控制器会自动加载 Visualforce 页面中引用的所有字段使用它的。

First off, keep in mind that storing passwords in salesforce is frowned upon, especially if you are an app builder (see here)

In order to update a field on the form you must first load it in the background, the simplest way is to use builtin standard controller features since that controller automatically loads all fields referenced in the visualforce page that uses it.

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