我有两个使用相同控制器的视觉力页面。我在第一个视觉页面上设置了一些字段,我想在第二个视觉力量页面上访问它们。我想知道我怎么能做到这一点?
这是我目前在控制器中的内容:
// most functions have been removed.
public with sharing class someController{
//standard controller declarations
private ApexPages.StandardController controller {get;set;}
public String identifier {get;set;} //This is the field I want to access on both pages
/**
* Constructor
**/
public DeviceLookupController(ApexPages.StandardController controller) {
this.controller = controller;
}
}
本质上,我希望该identifier
字段在someController
.
上面显示的someController
是两个页面的扩展,并且standardController
在两个页面上都设置为相同的对象。