使用带有sinatra(或rails)的page.js

时间:2015-01-13 11:57:02

标签: javascript ruby-on-rails sinatra page.js

我想知道是否可以将page.js与sinatra一起使用。我的images路线被Sinatra而不是Page.js

拦截
get '/' do
  erb :index
end

__END__

@@ layout
 <!DOCTYPE html>
 <html lang="en">
 <head>
   <title>page.js</title>
   <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
   <script type="text/javascript" src="page.js"></script>
   <style type="text/css">ul li { display: inline; list-style:none }</style>
 </head>
 <body>
   <%= yield %>
</body>
<script type="text/javascript">
page('/images', function(ctx){
      console.log('page(' + ctx.path + ')');
          $('section#example').html('<h2 class="text-center">Listing of Images</h2>');
});
/*... /videos ..*/
page('*', function(ctx){
      console.log('page(' + ctx.path + ')');
          $('section#example').html('<h2 class="text-center">Error : ' + ctx.path + '</h2>');
});

$('document').ready(function(){page()});

</script>
</html>

@@ index
    <ul>
      <li><a href="./">index</a></li>
      <li><a href="./videos">videos</a></li>
      <li><a href="./images">images</a></li>
    </ul>
   <section id="example" class="well"></section>
   <h1>hello world</h1>

1 个答案:

答案 0 :(得分:1)

我认为问题只是您本地page.js文件的位置。 Sinatra希望在名为public的目录中找到静态资产(否则路径将被假定为已定义的路径)。所以只需创建目录并在那里移动page.js文件(但保持脚本src不变)。如果你想更改Sinatra提供静态资产的目录,你可以这样做:

set :public_folder, Proc.new { File.join(root, "my_directory_with_assets") }

我认为你也缺少jQuery,所以要从他们的CDN中添加它。

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>