我对 Rails 开发非常陌生
导轨 3.2.13 / 红宝石 1.9.3
我有这个模型
class Post < ActiveRecord::Base
attr_accessible :content, :title
attr_accessor :testing
def asignar
title = "hey"
end
end
然后当我进入 rails 控制台时:
irb(main):004:0* post = Post.new
=> #<Post id: nil, title: nil, content: nil, created_at: nil, updated_at: nil>
irb(main):005:0> post.asignar
=> "hey"
irb(main):006:0> post.title
=> nil
这正常吗?我是否总是要保存对象以便能够获取属性?