70、saleforce的Json输出

List<Merchandise__c> merchandise = [select Id,Name,Price__c,Quantity__c from Merchandise__c limit 1];
String goodsToJson = JSON.serialize(merchandise);//通过serialize方法序列化成JSON内容
String goodsToJsonPretty = JSON.serializePretty(merchandise);//通过serializePretty方法序列化成JSON内容,以精美的输出格式输出
System.debug(goodsToJson);
System.debug(goodsToJsonPretty);

 

posted @ 2017-02-24 17:30  香港胖仔  阅读(160)  评论(0编辑  收藏  举报