我需要一些简单的博客帮助我使用Ruby,Sinatra和ActiveRecords。
我正在尝试设置动态默认值'输入表单,允许用户编辑他们的博客文章而无需重新输入整个内容。
这是我到目前为止所得到的:
<textarea type="comment" id="description" name="description" value="<%= @blog.description %>"></textarea>
如果我将<textarea>
更改为<input>
则可行。
答案 0 :(得分:0)
<textarea>
没有value
属性。
您应该将其更改为如下所示:
<textarea type="comment" id="description" name="description"><%= @blog.description %></textarea>