1

如何编写从纵向切换到横向的事件?如何在浏览器调试中进行此切换?这是必须捕获事件景观的视图。也许在对象事件中?或者你能建议我吗?

          var HomeView = Backbone.View.extend({

 template: Handlebars.compile(template),

 events: {
  "click .log_out":"log_out",
  "click .prove":"prove"
  },

  initialize: function() {

      console.log("inhomeview");

     this.render();



  },



    render: function() {
      //var context = JSON.parse(JSON.stringify(this.model));//eliminare
      var context=this.model;
      var html =this.template(context);
      console.log(html);

       $('#pagina').empty();
       $('#pagina').append(this.$el.html(html));


      return this;
    },

    log_out:function(){
        console.log("logout");
        Parse.User.logOut();
     //   new AppView;//ERRORE UNDEFINED NOT A FUNCTION
     window.location='index.html'  ;//METTERE UNA NEW APPVIEW MA DA ERRORE!!!
    },

    prove:function(){
     var lista=new Usercollection();
     lista.fetch();
     console.log(lista.length);

    }


 });

 return HomeView;

  });
4

2 回答 2

0

我猜你一定已经el为一个view对象指定了。
您在 中指定的所有事件event hash都委托给elview对象。
所以你可以这样写来监听一个orientationchange事件。

events: {
  'orientationchange' : 'onOrientationChange'
}

onOrientationChange: function() {
   if(window.orientation == 90 || window.orientation == -90) {
     //you are in landscape zone
     //do whatever you want to do
   }
}
于 2013-05-11T20:14:41.910 回答
0

你有处理肖像的视图元素吗?您可以向我们展示此代码以帮助您吗?

于 2013-05-11T19:51:53.743 回答