1

jQuery 验证在本地工作,但不在 Heroku 上。

控制台中没有关于它的错误。我该怎么办 ?

已编辑

      den@DENYS /D/myapp (master)
     $ RAILS_ENV=production bundle exec rake assets:precompile
     c:/Ruby192/bin/ruby.exe c:/Ruby192/bin/rake assets:precompile:all RAIL
     uction RAILS_GROUPS=assets
     rake aborted!
     Access denied for user 'root'@'localhost' (using password: NO)

     Tasks: TOP => environment
     (See full trace by running task with --trace)
     rake aborted!
     Command failed with status (1): [c:/Ruby192/bin/ruby.exe c:/Ruby192/bi

     Tasks: TOP => assets:precompile
     (See full trace by running task with --trace)
4

1 回答 1

2

在推送到 heroku 之前,您是否预编译了您的资产?

  RAILS_ENV=production bundle exec rake assets:precompile

您可以在此处找到更多信息。

如果它不能解决您的问题,请heroku logs在您的问题中提供。

于 2012-06-28T10:48:53.917 回答