Bootstrap轮播不在Heroku应用程序中工作

时间:2015-04-27 20:17:26

标签: ruby-on-rails twitter-bootstrap heroku

我使用我的rails应用程序从CDN使用bootstrap。除了主页上的旋转木马外,大多数造型都有效。它在开发中工作正常,但在Heroku没有。我不知道这是否相关,但我已经在routes.rb:root" home #index"中定义了这条路线。它通过HomeController显示index.html.erb。加载轮播中的第一个图像,但就是这样。它没有任何功能。现在我在gem文件中没有bootstrap gem,如果有必要我会尝试。我只是想看看之前是否有人见过这个问题并且知道该怎么做。我认为这个文件没问题,因为它在开发中有效,但这里是index.html.erb:

# Version: 8.0.2
<IfModule mod_fcgid.c>
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
</IfModule>
</IfModule>
</IfModule>
<IfModule mod_php5.c>
php_value upload_max_filesize 513M
php_value post_max_size 513M
php_value memory_limit 512M
php_value mbstring.func_overload 0
php_value always_populate_raw_post_data -1
<IfModule mod_env.c>
  SetEnv htaccessWorking true
</IfModule>
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteRule ^\.well-known/host-meta /public.php?service=host-meta [QSA,L]
RewriteRule ^\.well-known/host-meta\.json /public.php?service=host-meta-json [QSA,L]
RewriteRule ^\.well-known/carddav /remote.php/carddav/ [R]
RewriteRule ^\.well-known/caldav /remote.php/caldav/ [R]
RewriteRule ^apps/calendar/caldav\.php remote.php/caldav/ [QSA,L]
RewriteRule ^apps/contacts/carddav\.php remote.php/carddav/ [QSA,L]
RewriteRule ^remote/(.*) remote.php [QSA,L]
RewriteRule ^(build|tests|config|lib|3rdparty|templates)/.* - [R=404,L]
RewriteRule ^(\.|autotest|occ|issue|indie|db_|console).* - [R=404,L]
</IfModule>
<IfModule mod_mime.c>
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php index.html
</IfModule>
AddDefaultCharset utf-8
Options -Indexes
<IfModule pagespeed_module>
        ModPagespeed Off
</IfModule>
<IfModule mod_headers.c>
  <FilesMatch "\.(css|js)$">
    Header set Cache-Control "max-age=7200, public"
  </FilesMatch>
</IfModule>

ErrorDocument 403 /core/templates/403.php
ErrorDocument 404 /core/templates/404.php

2 个答案:

答案 0 :(得分:0)

我在链接到外部资源时使用https:而不是http:解决了这个问题。它在开发中有效,但显然heroku不允许它。

答案 1 :(得分:0)

我遇到了同样的问题,就我而言,我不得不从application.js文件(<script> // Here the value is stored in new variable x function myFunction() { var x = document.getElementById("prijs-<?=$order_list['prijs'];?>").value; document.getElementById( "price").innerHTML = x; } </script> ''' )中删除//=require jquery_ujs。希望它将解决该问题。 :)