我在Rails 5.1应用程序上安装了xray-rails,但按下键盘快捷键却什么也没做。我已经清除了缓存资产rails tmp:clear
。有什么想法吗?
答案 0 :(得分:1)
Rails 5.1将jQuery作为依赖项丢弃。明确地将它添加到Gemfile:
group :development do
gem 'xray-rails'
gem 'jquery-rails' # add it outside the group if you need it globally
end
然后在application.js中导入它:
//= require jquery
你可以再次使用Cmd + Shift + X.