Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 javascript 以同步方式从 CRM 2011 获取元数据?如果是的话,有人可以用SDK中的一些示例代码(我找不到)或者你自己的代码来找我吗?
谢谢。
在 SDK 中,samplecode\js\soapforjscript\soapforjscript\scripts\sdk.metadata.js 文件中有 RetrieveAllEntitiesAsync、RetrieveEntityAsync 和 RetrieveAttributeAsync 示例。req.open要进行同步,请将语句的第三个参数更改为false. 然后您可以删除处理程序并在语句onreadystatechange之后立即处理响应。req.send(request);
req.open
false
onreadystatechange
req.send(request);