最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to display a controller variable in a sapui5 XML view? - Stack Overflow

programmeradmin1浏览0评论

How can I display a controller-variable in my sapUI5 XML-view?

So far I have a controller:

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

    return Controller.extend("sap.ui.demo.myApp.myController", {
        onInit: function () {
            this.myName = "Jon Doe";
        }
    });
});

And a XML-view:

<mvc:View
    controllerName="sap.ui.demo.myApp.myController"
    xmlns="sap.m">
<Panel>
    <content>
        <Label text="bind controller myName to this label"/>
    </content>
</Panel>

Is this possible without using Model-bindings? If not: what is the smartest (shortest) way to do it?

How can I display a controller-variable in my sapUI5 XML-view?

So far I have a controller:

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

    return Controller.extend("sap.ui.demo.myApp.myController", {
        onInit: function () {
            this.myName = "Jon Doe";
        }
    });
});

And a XML-view:

<mvc:View
    controllerName="sap.ui.demo.myApp.myController"
    xmlns="sap.m">
<Panel>
    <content>
        <Label text="bind controller myName to this label"/>
    </content>
</Panel>

Is this possible without using Model-bindings? If not: what is the smartest (shortest) way to do it?

Share Improve this question edited Jan 18, 2016 at 13:11 Benvorth asked Jan 13, 2016 at 15:53 BenvorthBenvorth 7,7428 gold badges53 silver badges73 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Why do you want to avoid model binding? With model binding maybe not the shortest, but a typical short way would be:

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

    return Controller.extend("sap.ui.demo.myApp.myController", {
        onInit: function () {
            this.myName = "Jon Doe";
            var oViewModel = new JSONModel({myName: this.myName});
            this.getView().setModel(oViewModel,"view");
        }
    });
});

and the binding in the view:

<mvc:View
    controllerName="sap.ui.demo.myApp.myController"
    xmlns="sap.m">
<Panel>
    <content>
        <Label text="{view>/myName}"/>
    </content>
</Panel>

I don't think it is possible to use controller variables in the view.

But there is a shortcut to this problem: just get the desired control by its id from the view after the view is rendered and set any value you want to the control:

return Controller.extend("sap.ui.demo.myApp.myController", {
    onAfterRendering: function () {
        sap.ui.getCore().byId(this.createId("<label's id>")).setText("Jon Doe");
    }
});

Of course, the "Jon Doe" text from the above example could be a variable:

var sText = "Jon Doe";
sap.ui.getCore().byId(this.createId("<label's id>")).setText(sText);
发布评论

评论列表(0)

  1. 暂无评论