gpt4 book ai didi

javascript - 如何在odata模型读取操作中应用过滤器?

转载 作者:行者123 更新时间:2023-12-02 14:14:44 24 4
gpt4 key购买 nike

我正在尝试在 odata 模型读取操作中添加过滤器。这是link他们提到将其作为参数传递。

var a = new sap.ui.model.Filter({  
path: "Source",
operator: sap.ui.model.FilterOperator.EQ,
value1: "Delhi, India"
});

var b =new sap.ui.model.Filter({
path: "Destination",
operator: sap.ui.model.FilterOperator.EQ,
value1: "Kolkata, West Bengal, India"
});

var f = new Array();f.push(a);f.push(b);

this.getView().getModel().read("/Lanes", { filters : f},{
method: "GET",
success: function(data) {

console.log("Carrier model setting up..");
console.log(data);
}});

最佳答案

              var mParameters = {
filters : f, // your Filter Array
success : function (oData, oResponse) {

},
error: function (oError) {

}
};

this.getView().getModel().read("/Lanes",mParameters);

关于javascript - 如何在odata模型读取操作中应用过滤器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39137404/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com