在SAPUI5应用程序中注销

时间:2018-11-08 06:09:40

标签: sapui5

我想在用户单击注销后将其重定向到“注销”页面。我已经知道了,直到这里并重定向了作品。在此注销页面上,我想显示一个链接,该链接会将用户带回到登录页面。

无法对链接进行硬编码,因为代码将通过QA,Prod等不同环境移动,因此链接将与应用程序链接不同。

注意:我确实读过很少的博客,并且使用ajax看到了一个特定的答案,我们不得不调用一些/sap/public/bc/icf/logoff,但这给我带来了错误。

参考:Logoff/Logout function for a UI5 Apllication

Controller.js

onLogout: function(oEvent) {
        sap.m.URLHelper.redirect("logout.html", false);
    }

Logout.html

    <!DOCTYPE HTML>
     <html>
         <h2><span>You have been logged off.</span></h2>
    //Here want to say "Click here to login again" (Making here as a href...)
    </html>

0 个答案:

没有答案