Pregunta

In the select dropdown element it shows instead of the string for City:

<option value="1">#<City:0x007f850028b220></option>
¿Fue útil?

Solución

Add to your City model:

class City
  def to_s
    name
  end
end

Replacing name with relevant attribute.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top