0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

クレジットカード決済用JavaScript準備 ⑦ tokenの値もOrderモデルで取り扱えるようにしましょう

Last updated at Posted at 2021-04-23
app/models/order.rb
class Order < ApplicationRecord
  attr_accessor :token
  validates :price, presence: true
end

attr_accessor

値別 基本構文
# シンボルの場合 attr_accessor :インスタンス変数名
# 文字列の場合 attr_accessor 'インスタンス変数名'

attr_accessorとは、インスタンス変数の読み取り専用のメソッドと書き込み専用のメソッド(セッター/ゲッター)の両方を定義することが出来るメソッドのことです。Rubyでは、以下のコードのように記述してクラス外部からインスタンス変数にアクセスしようとすると、「インスタンス変数にアクセスするためのメソッドが定義されていない」というエラーが発生します。これにより、クラス外部からのインスタンス変数の参照や変更が出来ません。
このように、attr_accessorメソッドはインスタンス変数にアクセスするためのメソッドを裏側で定義してくれます。そして、attr_accessorメソッドに指定されたインスタンス変数は、クラス外部から参照と変更の両方を行う事が出来ます。

attr_accessorメソッドを定義して各インスタンス変数にアクセスした場合-->
class User
  attr_accessor :name, :age # この記述で@name,@ageへアクセス出来る

  def initialize(name, age)
    @name = name
    @age = age
  end
end

tanaka = User.new('田中太郎', 18)

tanaka.age = 33

参考:Pikawaka 【Ruby】attr_accessorメソッド初心者入門書~使い方と必要な理由を理解しよう
http://pikawaka.com/ruby/attr_accessor

モデルのバリデーション

tokenはordersテーブルに存在しないため、本来はOrderモデルのバリデーションとしては記載することはできません。しかしながら、前のステップでattr_accessor :tokenと記載したことにより、tokenについてのバリデーションを記述することができます。

spec/factories/orders.rb
class Order < ApplicationRecord
  attr_accessor :token
  validates :price, presence: true
  validates :token, presence: true
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?