我想在文本字段中显示数据,并且这些值将动态获取。但是,当执行show动作时,我没有获得任何值(只有空白字段)。
请检查下面的mu代码。
<p id="notice"><%= notice %></p>
<p>
<b>Name:</b>
<input type="text",value="<%= @post.name %>">
</p>
<p>
<b>Title:</b>
<input type="text",value="<%= @post.title %>">
</p>
<p>
<b>Content:</b>
<input type="text",value="<%= @post.content %>">
</p>
<%= link_to 'Edit', edit_post_path(@post) %> |
<%= link_to 'Back', posts_path %>
请帮我解决此问题。
答案 0 :(得分:0)
通过删除引号替换值Property:
<input type="text",value=<%= @post.content %>>