Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 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>
谢谢!
string是关于在你的数据库中定义为一个吗?要超过 255 个字符,它必须是text. 原因是 Heroku 使用 Postgres,其strings 不能超过 255 个字符,而 sqlite 允许。
string
text