码迷,mamicode.com
首页 > 其他好文 > 详细

SAPUI5 OData请求传参数

时间:2016-11-19 13:32:13      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:oda   href   and   custom   discus   bind   table   key   请求   

例如要传para1, para2, para3

这里写代码片
var oModel = new sap.ui.model.odata.ODataModel(uri,
                                   true,
                                   user,
                                   password,
                                   headers);

// Create a simple list
var oTemplate1 =
    new sap.m.ColumnListItem({
        cells : [ new sap.m.Text({
                        text : "{MSG}"
                    }), 
                  new sap.m.Text({
                        text : "{ZCOUNTER}"
                    })
                ]
    });

oTable.setModel(oModel);

// Bind the items and template
oTable.bindAggregation("items", {
    path: "/CertificateSet",
    parameters: {    expand: "XXXXSSet" ,
                    custom:
                        {   para1: "20130101",
                            para2: "20120101" ,
                            par3: "4"
                        }
    }, 
    template: oTemplate1
});

如果 oData请求$expand=XXXXSSet,里面只有一条数据
参考:
https://archive.sap.com/discussions/thread/3559486
例子:
http://jsbin.com/openui5-hello-world/1001/edit?html,output

SAPUI5 OData请求传参数

标签:oda   href   and   custom   discus   bind   table   key   请求   

原文地址:http://blog.csdn.net/berryreload/article/details/53228871

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!