基础
json.session do
json.(@user, :id, :name, :admin)
json.token @user.authentication_token
end
产生的数据结构如下:
数组
json.microposts do
json.array! @microposts do |micropost|
json.(micropost, :id, :title, :content)
end
end
基础
json.session do
json.(@user, :id, :name, :admin)
json.token @user.authentication_token
end
产生的数据结构如下:
json.microposts do
json.array! @microposts do |micropost|
json.(micropost, :id, :title, :content)
end
end
本文标题:JBuilder笔记
本文链接:https://www.haomeiwen.com/subject/ohpvdttx.html
网友评论