我有这样的看法:
class MyView1 extends Backbone.Marionette.Layout
template: JST['templates/view1']
regions:
region1: '.region1'
## Here some methods....
现在我想扩展这个类来添加一些区域和方法
class MyView2 extends MyView1
template: JST['templates/view2']
regions:
region2: '.region2'
这会覆盖模板和区域属性。但我想将 region2 添加到区域哈希中,而不是覆盖它。所以 region 将是 region1 和 region2 的哈希值。
我怎么才能得到它?