jQuery 1.4.1、JSON 2、および SDK.JQuery.js (CRM SDK で提供される REST DataOperation のラッパー) を使用しています。SDK.JQquery.RetrieveMultipleRecords 関数を使用している間、Success レスポンスを読み取ることができません。詳しく説明するために、アラート機能を使用して以下に説明します。
ところで、コードは正しく実行されており、3 つのレコードも正しいです。
コードは次のとおりです。
SDK.JQuery.retrieveMultipleRecords(
"Contact",
"$select=FullName,ContactId&$filter=zk_cdn eq 'zk007'",
function(results) {
////TODO: How to read results?
//If I use alert(results) it give the output as [object Object],[object Object],[object Object]
//If I use alert(results[0]) it give the output as [object Object]
//If I use alert(results[0].FullName) it give the output as unidentified
},
errorHandler,
function() {//OnComplete handler }
);
function errorHandler(error) {
alert(error.message);
}
あなたから聞いて楽しみにして。前もって感謝します。