请教 post = Post.new :title => "This is title" => #<Post :id => number, :title => "This is title">
post = Post.new :title => "This is title"
#<Post :id => number, :title => "This is title">
如果是在 mysql 中,是主键要唯一,可以不连续
如果使用 Post.create() 即可带上id, 这时注意的就是它已经被存入数据库了。
Post.create()
id
#1 楼 @lyfi2003 哈~ 这个