作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 ActionText 来编辑一个段落,它在本地工作得很好,但是当我将它部署到 Heroku 时,即使我遵循了 rails 指南,它也会抛出一个错误,指出未定义的方法 rich_text_area_tag。我以为我需要在生产中配置 Active Storage,但事实并非如此。
这是我在 Heroku 的日志中得到的信息:ActionView::Template::Error (undefined method 'rich_text_area_tag' for #<#<Class> Did you mean? rich_text_area)
<%= f.label :something, class:'label' %>
<%= f.rich_text_area :something %>
最佳答案
我在网上找到了这个,对我很有帮助:
https://github.com/JoeWoodward/spree_helper_issue
我不确定这是否是正确的方法,但这是一种临时解决方法。
解决方案:
在 application_controller.rb
输入以下内容:
require 'action_text'
class ApplicationController < ActionController::Base
helper ActionText::Engine.helpers
...
end
helper
的文档:
https://apidock.com/rails/AbstractController/Helpers/ClassMethods/helper
关于ruby-on-rails - Rails 6 ActionText 不适用于 Heroku(未定义方法 'rich_text_area_tag'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57630178/
我是一名优秀的程序员,十分优秀!