我想生成new.json.rabl页面来创建新帖子 首先我在post文件夹new.json.rabl文件中创建
object @post
attributes :content, :photo
和localhost:3000 / post / new.json返回
{"post":{"content":null,"photo":null}}
我如何向rabl发送内容和照片值
答案 0 :(得分:0)
您的帖子控制器中可能有一个新方法。在那里,如果你想让rabl渲染内容和照片值,你需要输入:
def new
@post = Post.new(content: "some_content", photo: "some_photo")
render('path_to_your_rabl_file', formats: :json) # or respond_with(@post) if the routes are correct
end