2017-10-11 6 views
0

J'ai une classe Subscriber (parent) et Optionsdetail (child). Ils ont une relation à plusieurs.JSON Marshaller spécifie les attributs à afficher

classe abonné {

String picture 
String versionn 
String title 
String subtitle 
Integer guid 
Integer saleprice 
Integer msrp 
Integer costprice 
String saletype 
String category 
String storecategory 
String brand 
String condition 
String shipwithin 
String modelskucode 
String state 
String link 
String image 
String image2 
String image3 
String image4 
String description 
String publishdate 
Integer active 
Integer weight 
Integer quantity 
String shippingprice 
String whopay 
String shiptolocation 
String shippingmethod 
String paymentmethod 
String gsttype 
String optionsstatus 
Options options 
Optionsdetails optionsdetails 

en dessous est classe Optiondetails

class Optionsdetails { 
String sku 
String usersku 
Integer price 
Integer saleprice 
Integer msrp 
Integer costprice 
Integer quantity 
Integer warningqty 
String image1 
Integer status 
static belongTo = [subscriber: Subscriber] 

Je veux rendre seul attribut spécifique de ces classes, donc je l'ai fait le code à Bootstrap comme ci-dessous

class BootStrap { 
def init = { servletContext -> 
    JSON.registerObjectMarshaller(Subscriber) { 
     def returnArray = [:] 

     returnArray['title'] = it.title 
     returnArray['Id'] = it.guid 
     returnArray['description'] = it.description 
     returnArray['saletype'] = it.saletype 
     returnArray['options'] = ["optionName1": it.options.optionName1, "optionDetail1": it.options.optionDetail1] 
     returnArray['optionsdetails'] = it.optionsdetails.list() 
     return returnArray 
    } 

} 

C'était bon pour les attributs d'abonné de classe, mais comment puis-je personnaliser sur quoi afficher f ou des attributs de la classe Optionsdetails. Comme par exemple je ne veux pas afficher son identifiant et je veux organiser les attributs affichés. Voici à quoi ressemble le JSON

[ 
{ 
"title": "Female bag 2017 spring and summer new ladies shoulder bag wild shell small bag handbag female bag Messenger bag", 
"Id": 710, 
"description": "<font style=\"vertical-align: inherit;\"><font style=\"vertical-align: inherit;\">loading description...</font></font>", 
"saletype": "B", 
"options": { 
"optionName1": "Color", 
"optionDetail1": "Navy blue,light Grey,Taro purple,Deep purple,Dark gray,Pink,Light blue,Dark pink,black,Red wine," 
}, 
"optionsdetails": [ 
{ 
"id": 1, 
"costprice": null, 
"image1": "710.0", 
"msrp": null, 
"price": null, 
"quantity": 4561, 
"saleprice": null, 
"sku": "Navy blue", 
"status": 1, 
"usersku": null, 
"warningqty": 0 
}, 
{ 
"id": 2, 
"costprice": null, 
"image1": "710.0", 
"msrp": null, 
"price": null, 
"quantity": 4331, 
"saleprice": null, 
"sku": "light Grey", 
"status": 1, 
"usersku": null, 
"warningqty": 0 
}, 

Veuillez guider. Merci

Répondre

0

Je viens de découvrir que je dois créer un registerObjectMarshaller distinct pour les détails d'options comme ci-dessous pour personnaliser les attributs. Cela résout le problème.

JSON.registerObjectMarshaller(Optionsdetails) { 
     def returnArray = [:] 

     returnArray['sku'] = it.sku 
     returnArray['usersku'] = it.usersku 
     returnArray['price'] = it.price 
     returnArray['saleprice'] = it.saleprice 
     return returnArray 
    }