我想我在這裏錯過了一些愚蠢的東西,但無法弄清楚,它已經超過了一個小時的嘗試。所以不浪費時間..從rails獲取json數據方法
我想取index
行動在Users
控制器使用json。
例如localhost:3000/users.json
現在給我的數據..
[{"id":17,"url":"http://localhost:3000/users/17.json"},{"id":16,"url":"http://localhost:3000/users/16.json"}]
但我用戶有其他屬性表像first_name
和last_name
等。我想從json的使用。
我該如何修改我現有的方法以獲取所需的詳細信息。
# GET /users
# GET /users.json
def index
@users = User.all
end
private
# Use callbacks to share common setup or constraints between actions.
def set_user
@user = User.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def user_params
params.require(:user).permit(:avatar, :first_name, :last_name)
end
請向我們展示您的'索引'操作視圖。很可能你沒有在那裏添加額外的參數。 – 2014-09-26 06:43:38