2015-10-30 89 views
0

我怎樣才能改變這種轉換JSON字符串中添加父

return { 
businessSummary: d[0].GeneralInformation.BusinessSummary, 
businessUrl: d[0].GeneralInformation.WebSites.HomePage 
}; 

顯示輸出,就是這個樣子。只是想在上面

desired JSON oputput

添加父數據節點目前它這樣

enter image description here

回答

2

你是在與特性返回一個對象businessSummarybusinessUrl此時此刻。你想要做的是返回一個對象,其屬性數據其中包含與您的其他屬性的對象。像這樣:

return { data: { 
    businessSummary: d[0].GeneralInformation.BusinessSummary, 
    businessUrl: d[0].GeneralInformation.WebSites.HomePage 
}};