使用 REST API 的 Dynamics CRM 2011 搜索
我需要使用 MS Dynamics CRM 中的 REST API 调用在 Java 脚本中进行关键字搜索。
是否可以这样做,因为我只看到创建、更新、检索和删除 REST 端点。
请倾诉你的想法,它如何在 Javascript 中实现,如果不是 Javascript 那么如何实现?
是否有 LIKE 查询选项或类似的功能关键字,可以用作查询中的过滤器。
I need to do a keyword search in Java Script using REST API calls in MS Dynamics CRM.
IS it possible to do cause i see only create, update, retrieve and delete REST endpoints.
Please pour your thoughts, how it can be implemented in Javascript and if not in Javascript then how?
And is there a LIKE query option or a similar functionality keyword, which can be used as a filter in the query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经尝试过 ODATA 查询设计器。我没有 LIKE 查询选项。所以我所做的是,我使用子字符串查询选项来进行搜索,这是我可以从 ODATA 中获得的最大搜索结果。
I already tried ODATA Query Designer. I dont have a LIKE query option. So what i did was, I used the substring query option to make the search which is the maximum i can get from ODATA for search.
您是否尝试过使用 ODATA 查询设计器构建查询:http://crm2011odatatool.codeplex.com/ ?
Have you tried to build your query using the ODATA Query Designer: http://crm2011odatatool.codeplex.com/ ?
MS Dynamics CRM 支持开放数据协议
这里介绍了如何在 CRM 中使用它使用 REST 端点的 OData 系统查询选项
您还可以在此示例中查看函数
示例:创建、检索、更新并通过 JavaScript 使用 REST 端点进行删除
MS Dynamics CRM supports Open Data Protocol
Here described how to use it inside CRM OData System Query Options Using the REST Endpoint
Also you can see at function
in this sample Sample: Create, Retrieve, Update and Delete Using the REST Endpoint with JavaScript