9

私は money-rails gem で Rails 3.2.3 を使用しており、次のような製品モデルを持っています。

私のモデル

class Product < ActiveRecord::Base
  attr_accessible :name, :price

  composed_of :price,
  :class_name => "Money",
  :mapping => [%w(price_cents cents), %w(currency currency_as_string)],
  :constructor => Proc.new { |cents, currency| Money.new(cents || 0, currency || Money.default_currency) },
  :converter => Proc.new { |value| value.respond_to?(:to_money) ? value.to_money : raise(ArgumentError, "Can't convert #{value.class} to Money") }


end

私のテスト

require 'spec_helper'

describe Product do
  context "testing money gem" do
    it "creates product with price" do
      product = Product.create(:price => 200)
      product.price.should eq(200)
      product.price_cents.should eq(20000)
    end
  end
end

非推奨の警告が表示されます。

% rspec spec/models/product_spec.rb

Product
  testing money gem
DEPRECATION WARNING: You're trying to create an attribute `currency'. Writing arbitrary attributes on a model is deprecated. Please just use `attr_writer` etc. (called from block (3 levels) in <top (required)> at /home/map7/project/spec/models/product_spec.rb:6)
    creates product with price

Finished in 0.06682 seconds
1 example, 0 failures

この非推奨の警告を修正するにはどうすればよいですか?

アップデート

テーブルに「通貨」を追加すると、機能し始めます。私はこれをしなければなりませんか?

4

2 に答える 2

14

どうやら Rails 3.2 以降では、任意の属性 (データベースに保存されていない属性) は許可されなくなりました。それを回避する方法はないようです。

非推奨メッセージのコミットは次のとおりです: https://github.com/rails/rails/commit/b2955edc および理由は次のとおりです: https://github.com/rails/rails/commit/50d395f96ea05da1e02459688e94bff5872c307b

あなたの場合、 price_cents と currency はデータベースに保存する必要があり、作成されたクラスはそこから取得します。

于 2012-05-16T19:00:15.650 に答える
1

モデルに「currency:string」を追加しました

于 2012-05-16T04:10:48.983 に答える