3

ホーム、アバウト、プライバシー、用語の 4 つのルートを持つシンプルなバックボーン アプリを構築しています。しかし、ルートを設定した後、3 つの問題があります。

「用語」ビューが表示されません。

#about または #privacy ページを更新すると、ホーム ビューは #about/#privacy ビューの後にレンダリングされます

戻るボタンを押すと、ホーム ビューがレンダリングされません。たとえば、#about ページにいて、ホームページに戻るボタンを押した場合、about ビューはページにとどまります。

最初の問題について何が間違っているのかわかりません。2番目と3番目の問題は、ホームルーターに何かが欠けていることに関係していると思いますが、何が原因かわかりません。

これが私のコードです:

HTML

<section class="feed">

    <script id="homeTemplate" type="text/template">

        <div class="home">
        </div>

    </script>

    <script id="termsTemplate" type="text/template">

        <div class="terms">
        Bla bla bla bla
        </div>

    </script>   

    <script id="privacyTemplate" type="text/template">

        <div class="privacy">   
        Bla bla bla bla
        </div>

    </script>

    <script id="aboutTemplate" type="text/template">

         <div class="about">
         Bla bla bla bla
         </div>

    </script>

</section> 

ビュー

app.HomeListView = Backbone.View.extend({
    el: '.feed',

    initialize: function ( initialbooks ) {
         this.collection = new app.BookList (initialbooks);
         this.render();
    },

    render: function() {
         this.collection.each(function( item ){
         this.renderHome( item );
         }, this);
    },

    renderHome: function ( item ) {
         var bookview = new app.BookView ({
         model: item
         })
         this.$el.append( bookview.render().el );
         }  });

app.BookView = Backbone.View.extend ({
    tagName: 'div',
    className: 'home', 

     template: _.template( $( '#homeTemplate' ).html()),

    render: function() {
         this.$el.html(this.template(this.model.toJSON()));
         return this;
         }  
 });

app.AboutView = Backbone.View.extend({
     tagName: 'div',
     className: 'about',

     initialize:function () {
         this.render();
     },

     template: _.template( $( '#aboutTemplate' ).html()),

     render: function () {
         this.$el.html(this.template());
         return this;
     }
});

 app.PrivacyView = Backbone.View.extend ({
     tagName: 'div',
     className: 'privacy',

     initialize: function() {
         this.render();
     },

     template: _.template( $('#privacyTemplate').html() ),

     render: function () {
         this.$el.html(this.template());
         return this;
     }
});

 app.TermsView = Backbone.View.extend ({
     tagName: 'div',
     className: 'terms',

     initialize: function () {
         this.render();
     },

     template: _.template ( $( '#termsTemplate' ).html() ), 

     render: function () {
         this.$el.html(this.template()),
         return this;
     }
 });

そしてルーター:

var AppRouter = Backbone.Router.extend({
     routes: {
         '' : 'home',
         'about' : 'about',
         'privacy' : 'privacy',
         'terms' : 'terms'
     },

     home: function () {
         if (!this.homeListView) {
             this.homeListView = new app.HomeListView();
         };
     },

     about: function () {
         if (!this.aboutView) {
             this.aboutView = new app.AboutView();
        };
         $('.feed').html(this.aboutView.el);
     },

     privacy: function () {
         if (!this.privacyView) {
             this.privacyView = new app.PrivacyView();
         };
         $('.feed').html(this.privacyView.el);
     },

     terms: function () {
          if (!this.termsView) {
             this.termsView = new app.TermsView();
         };
         $('.feed').html(this.termsView.el);
     }
 })

 app.Router = new AppRouter();
 Backbone.history.start(); 

私は何かが欠けていますが、何がわかりません。

ありがとう

4

2 に答える 2

2

スクリプト テンプレートを .feed html 要素から移動する必要があると思います。HomeListView ビューをレンダリングすると、その el 内のすべてが削除され、HomeListView の側で呼び出している他のビューではスクリプト テンプレートを使用できなくなります。 .

<section class="feed">



</section>
<script id="homeTemplate" type="text/template">

    <div class="home">
    </div>

</script>

<script id="termsTemplate" type="text/template">

    <div class="terms">
    Bla bla bla bla
    </div>

</script>   

<script id="privacyTemplate" type="text/template">

    <div class="privacy">   
    Bla bla bla bla
    </div>

</script>

<script id="aboutTemplate" type="text/template">

     <div class="about">
     Bla bla bla bla
     </div>

</script> 

また、termsView のレンダリング関数にコロンがありません

  render: function () {
     this.$el.html(this.template());
     return this;
  }
于 2013-06-25T22:20:06.237 に答える
2

Rayweb_on によって提案されたすべてに加えて、 のメソッドから への呼び出しを削除し、ルートrender関数でなどを などに置き換えます。initializeAboutViewPrivacyViewTermsView$('.feed').html(this.aboutView.el);$('.feed').html(this.aboutView.render().el);

また、ルーターで変数などを定義し、currentViewルート関数が選択するビューに設定します。各ルート関数で、設定されているかどうかを確認し、設定されている場合remove()は、新しいビューをレンダリングする前に呼び出します。これらの変更により、以前にレンダリングされたビューが新しいビューを踏まないようにし、新しくレンダリングされたビューが最新であることを確認する必要があります。

于 2013-06-26T05:59:29.507 に答える