Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用roo并希望按照文档中的说明预览电子表格: <%= spreadsheet @rspreadsheet, ["Tabelle"] %> 但错误显示“未定义的方法 `电子表格'”我不知道我是否错过了任何宝石。
<%= spreadsheet @rspreadsheet, ["Tabelle"] %>
顺便说一句,我添加了“电子表格”宝石,而我觉得它与这个问题无关。
Roo 似乎不需要 rails 辅助模块。
require 'roo/roo_rails_helper'
在控制器中为我工作。
如果您使用 Rails 3,则需要编写
<%= raw spreadsheet @rspreadsheet, ["Tabelle"] %>
在视图中。