Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NameError: undefined local variable or method `params' for main:Object

I'm using carrier wave and i get

NameError: undefined local variable or method `params' for main:Object

when i do u.commentfile = params[:file]

in the console? help!

like image 395
ahmet Avatar asked Mar 15 '26 17:03

ahmet


1 Answers

The error is telling you exactly what's wrong. In the console, you're not in the scope of a request, so the params variable isn't defined unless you've done so manually. What are you trying to do?

like image 197
Chowlett Avatar answered Mar 17 '26 10:03

Chowlett