前提・実現したいこと
本日日付を指定したテーブルのデータをエクセルファイルとしてダウンロードできる機能を追加したいです。
その際にhtmlのタグがついているデータをリッチテキストに変換してエクセルに書き込みたいです。
to_spreadsheet
と呼ばれるgemを使って実装しているのですが、エクセル出力するためのボタンを押すとエラーが出てしまいます。
こちらのエラー原因わかりましたらご教示いただきたいです。
出力例:
<ol> <li>どれみ</li> </oi> ↓ 1.どれみ発生している問題・エラーメッセージ
ActionView::MissingTemplate in CMasters#index Showing /Users/xxxxx/xxxxx/ruby_workspace/xxxxx/app/views/c_masters/index.xlsx.slim where line #1 raised: Missing partial c_masters/_special_c_masters with {:locale=>[:ja], :formats=>[:xlsx], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :slim, :coffee, :jbuilder]}. Searched in: * "/Users/xxxxx/Desktop/ruby_workspace/xxxxx/app/views" * "/Users/xxxxx/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/kaminari-core-1.1.1/app/views" Extracted source (around line #1): 1 = render 'c_masters/special_c_masters', special_c_masters: @special_c_masters Rails.root: /Users/xxxxx/Desktop/ruby_workspace/xxxxx Application Trace | Framework Trace | Full Trace app/views/c_masters/index.xlsx.slim:1:in `_app_views_c_masters_index_xlsx_slim__1405572247546657265_70194304575900' app/controllers/c_masters_controller.rb:53:in `block (2 levels) in index' app/controllers/c_masters_controller.rb:51:in `index' Request Parameters: {"format"=>"xlsx"}
該当のソースコード
[Gemfile]
gem 'rubyzip', '>= 1.2.1' gem 'axlsx', git: 'https://github.com/randym/axlsx.git' gem 'to_spreadsheet'
[c_masters_controller.rb]
def index special_c_master_ids = CMaster.where.not(date: nil).pluck(:id) @special_c_masters = CMaster.where(id: special_c_master_ids).where('date = ?', Date.today) # binding.pry respond_to :xlsx, :html respond_to do |format| format.html format.xlsx { render xlsx: :index, filename: "my_items_doc" } end end
[index.xlsx.slim]
= render 'special_c_masters', special_c_masters: @special_c_masters
[index.html.slim]
= link_to '本日分エクセル出力', c_masters_path(format: :xlsx), class: "btn btn-success btn-block mb-3"
[_special_c_masters.html.slim]
table.table.table-hover thead.thead-default tr th | あああ th | いいい th | ううう
参考資料
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/29 08:11 編集
2019/11/29 08:19