Gemfile 中引用
gem 'default_value_for'
在 model 中引用
class Product < ApplicationRecord
default_value_for :cost_count, 0
end
然后在 console 中执行 new 的时候报错:
Running via Spring preloader in process 759
Loading development environment (Rails 5.1.3)
2.3.4 :001 > Product.new
ArgumentError: wrong number of arguments (given 2, expected 0..1)
from (irb):1
想问一下这个问题是什么问题?