rails不会加载样式表和javascript文件

时间:2014-03-18 12:00:18

标签: ruby-on-rails ruby ruby-on-rails-4

我试图加载一个页面滚动https://github.com/peachananr/onepage-scroll)到我的rails应用程序,但它不会加载它只显示纯文本。即时通讯新手,我还在学习。

这是我试图开始工作的页面的代码。页#的 index.html.erb

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Demo</title>
  <meta name="author" content="#" />
  <meta name="description" content="#" />
  <meta name="keywords"  content="#" />
  <meta name="Resource-type" content="Document" />



  <% stylesheet_link_tag 'onepage-scroll' %>

  <% javascript_include_tag 'jquery.onepage-scroll.js' %>


</head>

<body>

<div class="main">
  <section>
    <h3>hello</h3>
  </section>
  <section>
    <h3>hello</h3>
  </section>
</div>
</body>
</html>

如果有人可以帮助我,我将非常感激。感谢

1 个答案:

答案 0 :(得分:0)

只需添加=

即可
<%= stylesheet_link_tag 'onepage-scroll' %>

  <%= javascript_include_tag 'jquery.onepage-scroll.js' %>