3

Ruby on Rails チュートリアル (http://ruby.railstutorial.org/chapters/a-demo-app#sec-modeling_demo_users) に従い、セクション 2.2.1 までの演習を正常に完了しました。

2.2.1 で作成されたユーザー リソース (localhost:3000/users や localhost:3000/user/new など) を読み込もうとすると、文字エンコードの問題が発生します。これは、基本的にすぐに使用できるコードです。で生成:

C:\Users\Dennis\rails_projects\demo_app> rails generate scaffold User name:string email:string

私の環境:

  • Windows 7 64 ビット
  • ルビー 1.9.3p194 (2012-04-20) [i386-mingw32]
  • レール 3.2.9

Rails は、次で始まるエラー ページを返します。

Encoding::Users#index の InvalidByteSequenceError

C:/Users/Dennis/rails_projects/demo_app/app/views/layouts/application.html.erb を表示すると、6 行目が発生します。

incomplete "\x00" on UTF-16LE
  (in C:/Users/Dennis/rails_projects/demo_app/app/assets/javascripts/users.js.coffee)

抽出されたソース (6 行目あたり):

3: <head>
4:   <title>DemoApp</title>
5:   <%= stylesheet_link_tag    "application", :media => "all" %>
6:   <%= javascript_include_tag "application" %>
7:   <%= csrf_meta_tags %>
8: </head>
9: <body>

users.js.coffee の内容:

# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/

application.html.erb の内容:

<!DOCTYPE html>
<html>
<head>
  <title>DemoApp</title>
  <%= stylesheet_link_tag    "application", :media => "all" %>
  <%= javascript_include_tag "application" %>
  <%= csrf_meta_tags %>
</head>
<body>

<%= yield %>

</body>
</html> 

index.html.erb の内容:

<h1>Listing users</h1>

<table>
  <tr>
    <th>Name</th>
    <th>Email</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @users.each do |user| %>
  <tr>
    <td><%= user.name %></td>
    <td><%= user.email %></td>
    <td><%= link_to 'Show', user %></td>
    <td><%= link_to 'Edit', edit_user_path(user) %></td>
    <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New User', new_user_path %>
4

1 に答える 1

2

に名前users.js.coffeeを変更するusers.jsと機能します。

于 2012-11-14T05:11:27.593 に答える