在本地主机上可以...... 但是在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>
谢谢!
答案 0 :(得分:0)
是否在数据库中定义为string
?要超过255个字符,它必须是text
。之所以是因为Heroku使用Postgres,string
s不能超过255个字符,而sqlite会允许它。