SAPUI5 and NW Portal



我的门户上部署了一个 SAPUI5 应用程序。我正在尝试在我的 SAPUI5 中让用户登录门户。

但是当我运行我的应用程序时,它不会获取任何数据。

波纹管是我的代码

sap.ui.define([
'jquery.sap.global',
'sap/ui/core/Fragment',
'sap/ui/core/mvc/Controller',
'sap/ui/model/Filter',
'sap/ui/model/json/JSONModel'
], function(jQuery, Fragment, Controller, Filter, JSONModel) {
    "use strict";
    var CController = Controller.extend("sap.m.ZHRUI001.C", {
        inputId: '',
        valueHelpRequest: function(oController) {
            this.inputId = oController.oSource.sId;
            var sServiceUrl = "http://<my server host>:<my server port>/sap/bc/ui2/start_up";
            var oModel = new sap.ui.model.odata.ODataModel(sServiceUrl, true, "user", "password");
            var oJsonModel = new sap.ui.model.json.JSONModel();
            oModel.read("/?", null, null, true, function(oData, response) {
                oJsonModel.setData(oData);
            });
            sap.ui.getCore().setModel(oJsonModel);

            // Handling of both confirm and cancel; clear the filter
            var that = this;
            var handleClose = function(oEvent) {
                var oSelectedItem = oEvent.getParameter("selectedItem");
                if (oSelectedItem) {
                    that.byId(that.inputId).setValue(oSelectedItem.getTitle());
                }
                oEvent.getSource().getBinding("items").filter([]);
            };
            // Create a SelectDialog and display it; bind to the same
            // model as for the suggested items
            if (!this._valueHelpSelectDialog) {
                this._valueHelpSelectDialog = new sap.m.SelectDialog("valueHelpSelectDialog", {
                    title: "{fullName}",
                    items: {
                        
                        template: new sap.m.StandardListItem({
                            title: "{fullName}",
                            active: true
                        })
                    },
                    search: function(oEvent) {
                        var sValue = oEvent.getParameter("value");
                        var oFilter = new sap.ui.model.Filter(
                            "name",
                            sap.ui.model.FilterOperator.Contains, sValue
                        );
                        oEvent.getSource().getBinding("items").filter([oFilter]);
                    },
                    confirm: handleClose,
                    cancel: handleClose
                });
                this._valueHelpSelectDialog.setModel(oJsonModel);
            } else {
                this._valueHelpSelectDialog.setModel(oJsonModel);
            }
            this._valueHelpSelectDialog.open();
        }
    });
    return CController;
});

从我读到的内容来看,您正在谈论的是SAP门户,我希望您有一个7.3+版本。

我已经找到了您用来查找用户的SAP文档,请小心,因为这不是在门户上运行的SAPUI5应用程序的代码,而是在R/3系统上运行的应用程序的代码,端点/sap/bc/ui2/start_up在NetWeaver门户上不存在。

你可以做的是开发一个简单的REST服务(通过开发一个Servlet(,它将发回用户和你需要的所有细节。这些细节可以在保存IUser对象的PortalComponentRequest中找到,你可以在我的Git上找到一个示例门户servlet:

https://gitlab.com/Almiriad/sap-portal-samples

您只需向 url 发送 GET 请求http[s]://youserver:your port/irj/servlet/prt/portal/prtroot/UserServletSample.UserInfoSampleServlet 你会得到一个JSo

{
    "user": {
        "user-name":"<LASTNAME>, <FIRSTNAME>",
        "user-id":"<USER_ID>",
        "user-email":"<USER@EMAIL.COM>"
    }
}

我希望这对你有帮助。

'

 var oUserData;
            var y = "/sap/bc/ui2/start_up";
            var xmlHttp = null;
            xmlHttp = new XMLHttpRequest();
            xmlHttp.onreadystatechange = function() {
            if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
                    oUserData = JSON.parse(xmlHttp.responseText);
                }
            };
            xmlHttp.open("GET", y, false);
            xmlHttp.send(null);

'

控制台 o用户数据 获取登录用户的登录详细信息。

最新更新