0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jbuilderの扱い方

Posted at

#前提条件
以下のブログを読んでから本記事をお読みください
非同期通信の手始め
respond_toについて

#jbuilder
結論、jbuilderを用いるとrender json 〇〇をしなくていいです。
jbuilderは、viewと同じように該当するアクションと同じ名前にする必要があります。
今回はコメント機能の非同期通信を実装するので
commentのcreateアクションに対応するjbuilderのファイルを作成します。
作成する場所はviews/comments/create.json.jbuilderになります。

  json.text  @comment.text
  json.user_id  @comment.user.id
  json.user_name  @comment.user.nickname

このような形で記述します。
とても見やすいですよね。jbuilderの最大のメリットは
見やすく分かりやすくコードがかけることです。
積極的に使っていきましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?