2012-04-26 12 views
0

JSON形式の質問があります。基本的には、キーパス内のオブジェクトの周りの配列[]を削除しようとしています。レールコントローラ:JSON&Rails:JSON結果のキーパス内の配列ブラケットを取り除く方法

# channels controller 
    def index 
    @channels = Channel.all 

    respond_to do |format| 
     format.html # index.html.erb 
     format.json { render :json => { :channels => @channels } } 
    end 
    end 

# channels.rb 
    def as_json(options={}) 
    { self.id => self.attributes } 
    end 

# returns this JSON: 
{"channels":[{"78":{"id":78,"name":"Zombie Bass","created_at":"2012-03-21T04:04:36Z","updated_at":"2012-04-20T01:21:12Z","num_of_listeners":1}},{"82":{"id":82,"name":"The Beatles123","created_at":"2012-03-22T20:28:34Z","updated_at":"2012-04-17T04:34:07Z","num_of_listeners":1}},{"125":{"id":125,"name":"New!","created_at":"2012-04-19T04:05:47Z","updated_at":"2012-04-19T04:05:47Z","num_of_listeners":1}},{"132":{"id":132,"name":"Test!","created_at":"2012-04-26T21:00:30Z","updated_at":"2012-04-26T21:00:30Z","num_of_listeners":1}}]} 

# I want this JSON (just remove the array around all the channels): 
{"channels":{"78":{"id":78,"name":"Zombie Bass","created_at":"2012-03-21T04:04:36Z","updated_at":"2012-04-20T01:21:12Z","num_of_listeners":1}},{"82":{"id":82,"name":"The Beatles123","created_at":"2012-03-22T20:28:34Z","updated_at":"2012-04-17T04:34:07Z","num_of_listeners":1}},{"125":{"id":125,"name":"New!","created_at":"2012-04-19T04:05:47Z","updated_at":"2012-04-19T04:05:47Z","num_of_listeners":1}},{"132":{"id":132,"name":"Test!","created_at":"2012-04-26T21:00:30Z","updated_at":"2012-04-26T21:00:30Z","num_of_listeners":1}}} 
+0

それはもう有効なJSONではありません。 –

答えて

2

これはできません。 JSONでは配列や配列型の構造体ではないオブジェクトのリスト(JavaScriptのみ)を持つことはできません。

質問を編集して、これを達成しようとしている理由を教えてもらえれば、さらに手助けすることができます。

関連する問題