gpt4 book ai didi

ruby-on-rails - Rails CSS 不使用 Heroku 加载

转载 作者:行者123 更新时间:2023-12-01 16:18:53 26 4
gpt4 key购买 nike

UPDATE: The full site code is here - https://github.com/eWizardII/PeerInstruction

我在 Heroku 上设置了以下站点 - http://www.peerinstruction.net/users/sign_up问题是我已经更新了 css,但它没有在网站上得到积极反射(reflect),它只显示一个文本框,带有一些编辑/自定义字体。我在以下要点中附加了 css 文件 - https://gist.github.com/f74b626c54ecbb60bbde

注册页面 Controller :

!!! Strict
%html
%head
%title= yield(:title) || "Untitled"
= stylesheet_link_tag 'application', 'web-app-theme/base', 'web-app-theme/themes/activo/style', 'web-app-theme/override'
= javascript_include_tag :defaults
= csrf_meta_tag
= yield(:head)
%body
#container
#header
%h1
%a{:href => "/"} Peer Instruction Network
#user-navigation
%ul.wat-cf
%li
.content.login
.flash
- flash.each do |type, message|
%div{ :class => "message #{type}" }
%p= message
= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "form login" }) do |f|
.group.wat-cf
.left= f.label :email, :class => "label right"
.right= f.text_field :email, :class => "text_field"
.group.wat-cf
.left= f.label :password, :class => "label right"
.right= f.password_field :password, :class => "text_field"
.group.wat-cf
.right
%button.button{ :type => "submit" }
Login
/= link_to "Sign In", destroy_user_session_path
#box
= yield

注册页面 haml 文件:

%h2
.block
.content.login
.flash
- flash.each do |type, message|
%div{ :class => "message #{type}" }
%p= message
= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f|
= devise_error_messages!
%div
= f.label :firstname
%br/
= f.text_field :firstname
%div
= f.label :middlename
%br/
= f.text_field :middlename
%div
= f.label :lastname
%br/
= f.text_field :lastname
%div
= f.label :email
%br/
= f.email_field :email
%div
= f.label :password
%br/
= f.password_field :password
%div
= f.label :academic
%br/
= f.text_field :academic
%div= f.submit "Continue"
= render :partial => "devise/shared/links"

我用web-app-theme创建了一个activo主题,然后修改了。

最佳答案

这是你的 working app

我必须做一些事情来修复它。

首先,我把它放在雪松堆上,这很重要。

然后,更改您的 Gemfile 至关重要。我做了一个Gist我在那里做了什么,但简而言之,我将 sqlite3 移到了开发和测试环境中,并删除了 ruby​​racer gem。

我想这就是我所做的一切。

我养成了删除不再使用的编译 Assets 的习惯,因为它们只会占用 public/assets

中的大量空间

关于ruby-on-rails - Rails CSS 不使用 Heroku 加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8163182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com