相关疑难解决方法(0)

Rails 3.1限制用户创建的对象

我想限制用户可以创建的模型对象的数量.我已经尝试过以下但它不起作用.我理解rails 3.1中发生了一些变化,现在还不确定如何实现.

class User < ActiveRecord::Base
  has_many :things, :limit => 5, :dependent => :destroy # This doesn't work
end

class Things <ActiveRecord::Base
  belongs_to :user
end
Run Code Online (Sandbox Code Playgroud)

ruby activerecord ruby-on-rails limit ruby-on-rails-3.1

8
推荐指数
1
解决办法
3902
查看次数