2011-09-24 84 views
0

我希望得到以下JSON響應:爲什麼我得到不同的JSON響應?

{"result": 
    { 
    "id": "226", 
    "ends_at": "2011-06-24 00:00:00", 
    "photo_url": "1308262872.jpg" 
    } 
} 

,但我只能接受這樣的響應:

{ 
    "id": "226", 
    "ends_at": "2011-06-24 00:00:00", 
    "photo_url": "1308262872.jpg" 
} 

爲什麼我不能得到「‘結果’:」關鍵路徑? 我使用的代碼是(導軌):

def index 
    respond_to do |format| 
    format.json { render :json => @results } 
    end 
end 

謝謝。

回答

1

嘗試這樣的:

def index 
    respond_to do |format| 
    format.json { render :json => { :result => @results } } 
    end 
end 
相關問題