Domanda

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

<option value="1">#<City:0x007f850028b220></option>
È stato utile?

Soluzione

Add to your City model:

class City
  def to_s
    name
  end
end

Replacing name with relevant attribute.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top