1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Active Adminで出力されるCSVの文字コードをシフトJISにする

Posted at

設定方法

version 1.0 からは以下の記述でシフトJISをCSVファイルに出力できます。
(Active Admin 1.3.0 で確認)

app/admin/posts.rb
ActiveAdmin.application.csv_options = { encoding: 'SJIS' }
ActiveAdmin.register Post do
  csv do
    # ...
  end
  # ...
end

参考

[activeadmin/features/index/format_as_csv.feature]
(https://github.com/activeadmin/activeadmin/blob/master/features/index/format_as_csv.feature)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?