UI5中针对Edm.Int16数据类型的正确filterOperator

时间:2019-07-18 19:10:22

标签: odata sapui5

我使用的OData提要中的一个字段是"Edm.Int16"。我试图过滤包含该字段的图块,但找不到正确的语法/ filterOperator。我相信我已经从SAP API中检查了所有可能的组合,但没有结果。


我没有字符串过滤问题。以下代码可以正常工作。

<TileContainer id="container1" tiles="{
  path: '/myDataSet',
  templateShareable: false,
  filters: [
    {
      path: 'Today',
      operator: 'Contains',
      value1: '1'
    }
  ]
}">


此代码不起作用(带引号的数字和不带数字的数字;使用不同的运算符):

<TileContainer id="container2" tiles="{
  path: '/myDataSet',
  templateShareable: false,
  filters: [
    {
      path: 'Sort',
      operator: 'EQ',
      value1: '0'
    }
  ]
}">

0 个答案:

没有答案