0

在 localhost 上没问题...但是在 heroku 中,我不能在“about”中添加超过 255 个字符。

heroku 错误

We're sorry, but something went wrong.

_form.html.erb

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

显示.html.erb

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

谢谢!

4

1 回答 1

0

string是关于在你的数据库中定义为一个吗?要超过 255 个字符,它必须是text. 原因是 Heroku 使用 Postgres,其strings 不能超过 255 个字符,而 sqlite 允许。

于 2013-03-08T05:04:09.177 回答