vote up 0 vote down star

When dealing with any framework with which you are not 100% familiar, I've found it advisable to attempt to understand and clean up any extraneous warnings, if only so that you have a better chance of noticing real errors when they occur.

The one I've been getting lately has been:

 DEPRECATION WARNING: @model will not longer be implicitly assigned to model

It appears not to be breaking anything in my current code base, but I'm worried just because I don't understand the warning completely. I thought it was generally better NOT to use @model in your partials.

Nonetheless this warning has been getting invoked every time this particular 'model' appears in its partial.

How should I explicitly assign it? I've created the @model in a controller, and am then calling the partial with a collection (understood this to be the 'railsy' method.)

Can anyone explain what's going on here to me, and what best practices are in this situation? I'm not freaking out yet, but the miles of warning tend to drown out the real output from my application.

flag

1 Answer

vote up 1 vote down check

After digging up this Lighthouse ticket, I wouldn't be too concerned; yet.

Inappropriate "@variable will no longer be implicitly assigned to variable" message

link|flag
Interesting. Thanks! – Joe Jun 13 at 17:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.