如何在js中识别Dynamics CRM web api版本?
How can we identify the Dynamics CRM web api version in js?
我们能否在 js 中检测 Web API 版本,例如 v8.0 v8.1 或 v9.0,这将有助于编写支持的消息调用与不支持的消息并优雅地处理它?
一种方法是使用 SDK RetrieveVersionRequest
查询 CRM 版本并使用 CRM 365 means v9.0 等映射检测它
有直接的方法吗?
你可以使用 Xrm.Page.context.getVersion
更多细节在我的博客 post
Xrm.Page.context.getVersion is now a supported method, use it!
我们能否在 js 中检测 Web API 版本,例如 v8.0 v8.1 或 v9.0,这将有助于编写支持的消息调用与不支持的消息并优雅地处理它?
一种方法是使用 SDK RetrieveVersionRequest
查询 CRM 版本并使用 CRM 365 means v9.0 等映射检测它
有直接的方法吗?
你可以使用 Xrm.Page.context.getVersion
更多细节在我的博客 post
Xrm.Page.context.getVersion is now a supported method, use it!