OData substringof或startswith返回所有项目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OData substringof或startswith返回所有项目相关的知识,希望对你有一定的参考价值。

我正在尝试从Rest Call中过滤我的结果。

$.ajax({
    type: "GET",
    headers: {
        "Accept": "application/json;odata=verbose"
    },
    dataType: "JSON",
    url: _spPageContextInfo.webServerRelativeUrl + "/_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$startswith('Title','" + request.term + "') eq true",
    success: function (data) {
    },
    error: function (ex) {
    }
});

在我的联系人列表中,我正在尝试检索以字符串开头或在其中包含字符串的项目的标题和ID,例如,这是某人的姓名。

我也尝试过substringof:

"/_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$substringof(" + request.term + ",'Title') eq true"

这也提供了相同的结果。

它为我提供了列表中的所有列表项,并且未应用过滤。看完这里后我建立了休息的网址Programming using the SharePoint 2013 REST service就像那里给出的Schema一样,我认为Url看起来不错,但似乎不是这样:)

编辑:

在OData Uri约定中应用$filter给出了以下错误:

{"error":{"code":"-1, Microsoft.SharePoint.SPException","message":{"lang":"en-US","value":"The query is not valid."}}}

尝试使用以下查询字符串:

_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$filter=substringof(m,'Title') eq true

_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$filter=substringof('m','Title') eq true

_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$filter=substringof('m',Title) eq true
答案

当我删除“eq true”时,我设法使用substringof获取过滤器返回正确的结果。

使用您的一个查询字符串,它应该像这样工作:

_api/lists/getByTitle('Contacts')/items?$select=Title,Id&$filter=substringof('m',Title)

我没有检查任何其他功能,但至少,startwith功能也是如此。

另一答案

对于任何看过这个问题的人,我都可以报告

/_api/web/lists/GetByTitle('Applications')/items?$filter=startswith(Title,'1AAJ') 

我在为我工作。

另一答案

我在我的端点上尝试了你的查询URI并应用了一些更改: - 子字符串的第二个参数不应该是字符串,所以我删除了使用者

在此之后我得到了结果:

http://jaydata.org/examples/Northwind.svc/Products?$选择= PRODUCT_ID,PRODUCT_NAME&$滤波器= substringof( 'CH',PRODUCT_NAME)

我的端点是标准的WCF数据服务,过滤器正在运行。

如果更改URI仍然返回所有记录,那我认为这将是一个SherePoint技巧。如果你在过滤器中放入'zzz'或一些随机字符串会怎样?

另一答案

检查http://www.odata.org/documentation/odata-v2-documentation/uri-conventions/是否正确的uri约定。

应该

/_api/lists/getByTitle('Contacts')     
/items?$select=Title,Id&$filter=substringof(" + request.term + ",'Title') eq true"

所以包含$ filter

另一答案

此外,包含方法工作,我有更好的兼容性。语法是:

api/People?$filter=contains(LastName,%27Smith%27)&$select=LastName,FirstName

以上是关于OData substringof或startswith返回所有项目的主要内容,如果未能解决你的问题,请参考以下文章

Angular 2 Kendo 网格不支持 odata v4

可以使 OData 返回 CSV 或 URL 吗?

OData IEnumerable 或 IQueryable

WebApi OData:$filter 'any' 或 'all' 查询不起作用

无法使用表存储在 Azure 云工作者角色中加载文件或程序集 Microsoft.Data.OData 版本 = 5.2.0.0 错误

OData 和 Cosmos DB