2

所以我只是克隆了一个存储库,一切正常。数据库迁移得很好,bundle 也运行得很好。但我无法让样式表在app/assets/stylesheets/开发中提供服务,也无法使用 javascript。该站点使用引导程序,因此它非常重要。我目前正在开发模式下工作,我看到通过查看页面源将 application.css/js 提供给浏览器,但没有其他文件。

以下是两个应用程序文件的内容:

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
 *= require_self
 *= require_tree .
 */

body {
    padding-top: 40px;
}

.alert {
    margin-top: 10px;
}

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jquery_ujs
//= require_tree .
4

1 回答 1

1

通过将 Gemfile 中的 rails 版本升级到 3.2.13 解决了这个问题。不知道为什么会这样,以及为什么它不能像克隆一样工作。这就是修复它的原因。

于 2013-07-23T05:07:04.223 回答