我是salesforce和apex的新手。
在我的第一个 VF 页面中,它显示了一些书名(来自 DB),当我想添加更多书籍时,我在第一页放了一个按钮,并在第二页显示了来自 DB 的所有书籍。
如果我从第 2 页中选择了一些书籍,我必须将其与之前的结果(书籍)一起添加到第一页。
如何在 APEX Visualforce 中执行此操作?
我是salesforce和apex的新手。
在我的第一个 VF 页面中,它显示了一些书名(来自 DB),当我想添加更多书籍时,我在第一页放了一个按钮,并在第二页显示了来自 DB 的所有书籍。
如果我从第 2 页中选择了一些书籍,我必须将其与之前的结果(书籍)一起添加到第一页。
如何在 APEX Visualforce 中执行此操作?
Two visualforce pages can have the same controller but navigating from page1 to page2 will create another object of that same controller. To prevent a new object from being created set the setRedirect method of the PageReference class to false, this will preserve the view state and you will have access to same objects from both the pages.