Skip to content
Advertisement

Getting unknown property Exception in yii2

here I have a model in yii2

JavaScript

when I want to submit the form I face with this error.

Getting unknown property: appmodelsCarAd::used_value

but as you see I have this field in my fields. My table name is car_ad. what is the problem with my code?

Advertisement

Answer

Because this field is not present in the @property comment I guess you have added it after the model has been generated. If you have got the DB schema cached new fields are not fetched until cache is updated. Try to remove the cache for DB.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement