我有以下参数
post[:name]
post[:title]
post[:unique][:comment]
post[:unique][:date]
我试过更新
test = post[:unique][:comment]
@post.update_attribute(:contest, test)
并得到错误
undefined local variable or method `post'
但是正常的更新是有效的
@post.update_attribute(:name, :name) #This works