0

仲間、私はサブビューからバックボーン ビューのプロパティにアクセスしようとしています (正しい名称かどうかはわかりません)。とにかく、ここにいくつかのコードがあります:

App.Views.ViewEditGuest = Backbone.View.extend({
    el: '#main-content .container_12',
    totalPayments: 0,
    totalBought: 0,

    template: _.template( App.Templates.ViewEditGuest ),

    events: {
        'click #sell' : 'sell'
    },

    sell: Backbone.View.extend({
         el: '#consumos',
         template: _.template( App.Templates.VEGConsumos ),

         render: function(){
                 // I need to acces ViewEditGuest's totalPayments and
                 // totalBought
                 this.$el.html( this.template() );
                 return this;
          }
    }),

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

したがって、sell の render メソッドから ViewEditGuest の totalPayments と totalBought にアクセスする必要があります。私は周りを見回してきましたが、解決策を見つけることができませんでした。

何か案は?

ありがとう!

4

1 に答える 1