문제

I have a languages column which is an array of strings with

add_column :table, :languages, :string, array: true, default: []

When I use update_attributes on that model, all columns are being updated except the languages column which remains []

Is there anything special needed to do here?

도움이 되었습니까?

해결책

When you post an array onto an action in the controller, you should permit like this:

params.require(:table).permit( {:languages => []}, :other_field, :other_field2... )
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top