使用 Rails 3 未显示值
Values are not showing using Rails 3
我想在文本字段中显示数据,这些值将被获取dynamically.But执行显示操作时我没有得到任何值(只有空白字段出现)。
请检查下面给出的 mu 代码。
Views/posts/show.html.erb
<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 %>
请帮我解决这个问题。
通过删除引号替换值 属性 为:
<input type="text",value=<%= @post.content %>>
我想在文本字段中显示数据,这些值将被获取dynamically.But执行显示操作时我没有得到任何值(只有空白字段出现)。
请检查下面给出的 mu 代码。
Views/posts/show.html.erb
<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 %>
请帮我解决这个问题。
通过删除引号替换值 属性 为:
<input type="text",value=<%= @post.content %>>