1

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);    
}

あなたから聞いて楽しみにして。前もって感謝します。

4

1 に答える 1

0

attributesによって、そのオブジェクトに対して使用可能なすべての属性のセットにアクセスできます。または、次のように移動できます。

var info = "";
for(attribute in myObject)
  info += "\n" + attribute;

またはそのようなもの。今はパソコンの前ではありません。

于 2013-03-01T22:06:55.213 に答える