如何在SAP Web IDE中调用另一个oData服务来使用该oData服务的集合?

时间:2016-09-06 06:12:25

标签: javascript sap web-ide

我需要来自另一个oData服务的数据的控制器代码。

sap.ui.define([
        "sap/ui/core/mvc/Controller"
    ], function (Controller) {
        "use strict";

    return Controller.extend("sap.ui.demo.wt.controller.Detail", {

        onInit: function () {
            var oRouter = sap.ui.core.UIComponent.getRouterFor(this);
            oRouter.getRoute("detail").attachPatternMatched(this._onObjectMatched, this);
        },

        _onObjectMatched: function (oEvent) {
            this.getView().bindElement({
                path: "/" + oEvent.getParameter("arguments").invoicePath,
                model: "invoice"
            });
        }
    });
});

0 个答案:

没有答案