我很抱歉问什么可能是一个补救问题,但在学习 rails 时,我试图按照本教程中的注释进行操作:
http://guides.rubyonrails.org/getting_started.html
昨晚我在本教程中发布了一个类似的问题,并得到了及时的回复,这对我有很大帮助,所以我希望同样如此。先感谢您。
第 5.14 节:删除帖子
我被指示向 index.html.erb 页面添加删除链接
<h1>Listing Posts</h1>
<table>
<tr>
<th>Title</th>
<th>Text</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @posts.each do |post| %>
<tr>
<td><%= post.title %></td>
<td><%= post.text %></td>
<td><%= link_to 'Show', post_path %></td>
<td><%= link_to 'Edit', edit_post_path(post) %></td>
<td><%= link_to 'Destroy', post_path(post),
method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</table>
生成:
<td><a data-confirm="Are you sure?" data-method="delete" href="/posts/1" rel="nofollow">Destroy</a></td>
对我来说看起来不错,但是当我单击链接时,我既没有得到确认,也没有被定向到删除操作。它生成这个 HTTP 动作
Request URL:http://localhost:3000/posts/1
Request Method:GET
Status Code:200 OK
Rails:4,Ruby:2,64 位 windows 8,chrome:版本 28.0.1500.72 m
再次感谢你
添加 application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Listing</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag :application %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
这产生了这个错误:
Posts#index 中的 ExecJS::RuntimeError 显示 C:/Ruby-Projects/listing/app/views/layouts/application.html.erb 其中第 6 行出现:
(在 C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/turbolinks-1.3.0/lib/assets/javascripts/turbolinks.js.coffee 中)提取的源代码(在第 6 行附近):3 4 5 6 7 8 9 清单 <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> <%= javascript_include_tag :application %> <%= csrf_meta_tags %>
Rails.root: C:/Ruby-Projects/listing
应用程序跟踪 | 框架跟踪 | 完整跟踪 app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___567964991_28724900' 请求
参数:
没有任何
应用程序.js
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .