使用sapui5的日期过滤器

时间:2018-04-19 09:22:04

标签: javascript date sapui5

我想使用带日期的过滤器,过滤器应该是这样的:

/MyEntitySet?$filter=Erdat gt datetime'2018-02-04T00:00:00' and Erdat lt 
datetime'2018-02-04T00:00:00

但是在sapui5中使用它时我不能解决这个问题:

var date = this.byId("date1").getDateValue();
var date2 = this.byId("date2").getValue();
var oDateFormat = sap.ui.core.format.DateFormat.getInstance({
  pattern: "yyyy-MM-ddTHH:mm:ss"
});
var oDate = oDateFormat.format(oDateFormat.parse(date));

var oDateFormat2 = sap.ui.core.format.DateFormat.getInstance({
  pattern: 'yyyy-MM-ddTHH:MM:SS'
});
var oDate2 = oDateFormat.format(oDateFormat.parse(date2));

任何人对此都有所了解,我将不胜感激。谢谢

1 个答案:

答案 0 :(得分:1)

您不需要自己格式化数据,只需构建过滤器并直接应用于odata请求。

sap.ui.define(['sap/ui/model/Filter', 'sap/ui/model/FilterOperator'], 
  function(Filter, FilterOperator) {
    new Filter({
      path: "Erdat",
      operator: FilterOperator.BT,
      value1: date,
      value2: date2
    });
  });