我正在使用Rails创建脚手架。 这是我的索引页
<%- model_class = Tasktodo -%>
<div class="page-header">
<h1><%=t 'title', :default => model_class.model_name.human.pluralize %></h1>
</div>
<table class="table table-striped">
<thread>
<tr>
<th><%= model_class.human_attribute_name(:id) %></th>
<th><%= model_class.human_attribute_name(:name) %></th>
<th><%= model_class.human_attribute_name(:tname) %></th>
<th><%= model_class.human_attribute_name(:created_at) %></th>
<th><%=t '.actions', :default => t("helpers.actions") %></th>
</tr>
</thead>
<tbody>
<div id="edit">
<% @tasktodos.each do |tasktodo| %>
<tr>
<td><%= link_to tasktodo.id, tasktodo_path(tasktodo) %></td>
<td><a href="#" onclick="inedit()" style="text-decoration:none"><%= tasktodo.name %></a></td>
<td><%= tasktodo.tname %></td>
<td><%=l tasktodo.created_at %></td>
<td>
</div>
<%= link_to t('.edit', :default => t("helpers.links.edit")),
edit_tasktodo_path(tasktodo), :class => 'btn btn-mini' %>
如果我点击了编辑按钮,则会转到下一页的编辑页面。 现在我想在没有服务器命中的情况下进行操作。单击时不会进入下一页。 所有操作只能在同一页面上完成。 使用Ajax,我该怎么做呢?
答案 0 :(得分:0)
我能提供的最佳链接是http://guides.rubyonrails.org/ajax_on_rails.html
跟进它,您将能够使用RoR和JQuery(使用Ajax)构建CRUD支架
希望这有帮助