美文网首页
JBuilder笔记

JBuilder笔记

作者: yaya_pangdun | 来源:发表于2016-06-18 15:07 被阅读12次

基础

json.session do
  json.(@user, :id, :name, :admin)
  json.token @user.authentication_token
end

产生的数据结构如下:

json数据结构
数组
json.microposts do
  json.array! @microposts do |micropost|
    json.(micropost, :id, :title, :content)
  end
end

相关文章

网友评论

      本文标题:JBuilder笔记

      本文链接:https://www.haomeiwen.com/subject/ohpvdttx.html