我在apex控制器中有页面引用方法。 我需要关闭当前标签。
这是我的代码:
public PageReference savePostSurveyAnswer(){
String sitePathPrefix = Site.getPathPrefix();
System.debug('savePostSurveyAnswer method start');
CaseIdentifierIdValue = ApexPages.currentPage().getParameters().get('caseIdentifierId');
ShGl_PostChatSurvey__c postChatSurvey = new ShGl_PostChatSurvey__c();
postChatSurvey.ShGl_SurveyQuestion1__c = question1;
postChatSurvey.ShGl_SurveyQuestion2__c = question2;
postChatSurvey.ShGl_SurveyQuestion3__c = question3;
postChatSurvey.ShGl_SurveyQuestion4__c = question4;
postChatSurvey.ShGl_SurveyResponse1__c = questionAnsSelected1;
postChatSurvey.ShGl_SurveyResponse2__c = questionAnsSelected2;
postChatSurvey.ShGl_SurveyResponse3__c = questionAnsSelected3;
postChatSurvey.ShGl_SurveyResponse4__c = questionAnsSelected4;
postChatSurvey.ShGl_Market_Code__c = 'US'; //new data base model
postChatSurvey.ShGl_UniqueCaseIdentifier__c = CaseIdentifierIdValue;
//postChatSurvey.ShGl_LiveTranscriptChatKey__c = chatKeyIdValue;
//postChatSurvey.ShGl_CaseOfSurvey__c = (Id) LiveChatTranscriptObj.CaseId; //through trigger
Database.SaveResult postSaveResult = Database.insert(postChatSurvey);
return new PageReference('javascript:window.close();');
}
谢谢。
任何帮助将不胜感激。
答案 0 :(得分:1)
查看Window.close()的文档时,您会发现原因:
仅允许使用window.open()方法由脚本打开的窗口调用此方法。如果该窗口不是由脚本打开的,则控制台中会出现与该错误类似的错误:脚本可能无法关闭不是由脚本打开的窗口。
简而言之:浏览器不允许您使用。这并非特定于Salesforce或VF。 Windows.close()
始终不会关闭标签页,而是会关闭整个浏览器窗口。
如果您要关闭控制台标签,this question/answer可能会提供您想要的内容。