LoginSignup
0
0

More than 3 years have passed since last update.

attributesとは、、?

Posted at

attributesとは

モデルに含まれるすべての属性を指します。

attributesを更新する方法

・ 一括更新し、そのあとに保存する


@post = Post.find(1)
@post.attributes = { title: '日常の眺め' }
@post.save()

・一括更新し、すぐに保存する


@post = Post.find(1)
@post.update_attributes({ user_id: 1, title: '日常の眺め' })
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