Heroku rails app(text_area bug)

时间:2013-03-08 05:02:49

标签: text heroku area

在本地主机上可以...... 但是在heroku中,我不能在" about"中添加超过255个字符。

heroku错误

We're sorry, but something went wrong.

_form.html.erb

<%= f.label :about %>
<%= f.text_area :about %>

show.html.erb

<p><%= @release.about %></p>

谢谢!

1 个答案:

答案 0 :(得分:0)

是否在数据库中定义为string?要超过255个字符,它必须是text。之所以是因为Heroku使用Postgres,string s不能超过255个字符,而sqlite会允许它。