Rails 4资产未在生产环境中编译

问题描述 投票:1回答:0

我的应用程序在开发环境中运行。 我正在使用JQCloud。 它在开发模式下工作正常,但是当我运行以下命令时

RAILS_ENV=production rake assets:precompile

所有资产均已预编译,但是在生产模式下运行服务器后,出现以下错误。

jQCloud is not a function


application.css.scss

 *= require_tree .
 *= require_self
 *= require font-awesome
 */


appication.js

//= require jquery
//= require jquery_ujs
//= require bootstrap-sprockets
//= require_tree .

破折的Widegts index.js

//= require_tree .
//= require highcharts/highstock
//= require highcharts/highcharts-more
//= require highcharts/modules/exporting
//= require jquery-ui
//= require jqcloud

面对错误跟随错误

Uncaught TypeError: $(...).jQCloud is not a function 
Uncaught ReferenceError: Highcharts is not defined
ruby ruby-on-rails-4 highcharts asset-pipeline
© www.soinside.com 2019 - 2024. All rights reserved.