LoginSignup
5
2

More than 5 years have passed since last update.

can't quote MatchDataって怒られたときは(Rails ActiveRecord)

Last updated at Posted at 2018-01-25

エラー文でググっても出てこなかったけどよく見たら一瞬で解決した話

matchText = text.match(/hoge/)
Text.find_by(value: matchText)

こんな感じで怒られたけどmatchで帰ってくるのはMatchDataっていうオブジェクトなので

matchText = text.match(/hoge/).to_s
Text.find_by(value: matchText)

こうしてto_sでstring化したら解決

5
2
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
5
2