我正在尝试使用一个简单的Ember-Rails应用程序,并且一切似乎渲染得很好,但后退按钮完全删除了所有渲染的元素。没有错误。
据我所知,到目前为止,这种情况发生是因为Ember希望父母能够做到这一点。模板已经渲染,并且不会重新渲染它。在我的应用中,我首先会显示一个“帖子”列表,其中包含指向每个帖子的链接。每个链接都应打开相关帖子,替换已呈现的帖子'页。它确实很好,然后当我单击后退按钮时,它会做一些有趣的事情:它呈现索引页面,然后完全删除应用程序模板中的所有内容(包括索引等)。
以下是代码的相关摘要:
首先,使用rails application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Slimgur</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= stylesheet_link_tag 'bootstrap', media: 'all', 'data-turbolinks-track' => true %>
<%= stylesheet_link_tag 'bootstrap-theme', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
<div class='container'>
<div id="ember-app">
</div>
</div>
</body>
</html>
//This is the page that is rendered by rails.
<h1>Static#index</h1>
<p>Find me in app/views/static/index.html.erb</p>
/* Application.js file. After all require statements. */
App = Ember.Application.create({rootElement: '#ember-app'});
/* Router.js */
// --------------------------
App.Router.map(function() {
this.resource('posts');
this.resource('post', { path: 'posts/:id' });
})
/* Application.hbs. */
// --------------------------
<header>
<article>
<div class="logo">
<h1>
<a href="#">App</a>
</h1>
</div>
</article>
</header>
{{!-- This is intended to render all Ember Templates. --}}
<section id="main">
{{{outlet}}}
</section>
<footer>
<p> Testing Footer one two three </p>
</footer>
/* posts.hbs */
// --------------------------
<article id="posts">
<h1>Posts</h1>
<ul>
{{#each post in model}}
<li>{{#link-to 'post' post}}{{post.title}}{{/link-to}}</li>
{{/each}}
</ul>
</article>
{{outlet}}
/* post.hbs*/
// --------------------------
<h2>{{title}}</h2>
/* Ember Routes: */
// --------------------------
App.PostsRoute = Ember.Route.extend({
model: function(){
return this.store.find('post');
},
})
App.PostRoute = Ember.Route.extend({
model: function(params){
return this.store.find('post', params.id);
},
})
我相信.hbs文件会编译成车把模板。
答案 0 :(得分:0)
好吧,最终,我最终删除了turbolinks。我仍然有点不确定这样做,但它似乎并没有以任何方式阻碍我的应用程序。
要做到这一点,你必须删除turbolinks宝石,并且需要使用turbolinks&#39; application.js中的行和application.html.erb中的turbolink标记。
我伸出手指,希望那些我没见过的东西不会搞砸。