我怎么会认识到控制壳有这个API例如注销功能: https://sapui5.hana.ondemand.com/sdk/docs/api/symbols/sap.ui.commons.ApplicationHeader.html#event:logoff
var oLogoff = new sap.ui.commons.ApplicationHeader();
... // within the Shell (function logout)
logout : function(oEvent) {
oLogoff.fireLogoff(); // this.fireLogoff() also not working
},
...
编辑:
oShell.fireLogout();
- >似乎是正确的,但是这结束了一个错误“没有足够的堆栈存储器” ..任何人任何帮助吗?
我希望返回到登录页面...这是自动处理?