2012-05-30 109 views
1

我正在查詢傳回JSON數據的外部服務。我想將這些數據格式化爲二進制PList,將其發送給客戶端。我如何在Rails中進行轉換?這是一個複雜的數據結構,其中包含數組&散列以及字符串&整數。如何將JSON數據轉換爲Rails中的PList數據?

基礎上的評論,我想這一點:

def friends_facebook 
    @graph = Koala::Facebook::GraphAPI.new(current_user.facebook_token.token) 
    render :plist => JSON.parse(@graph.get_connections("me", "friends").to_json) 
end 

導致錯誤(在渲染線):

incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string) 

回答