backbone.js を使用して、Facebook のログイン ボタンでログイン ページを実装しています。
window.LoginPage = Backbone.View.extend({
initialize:function () {
this.template = _.template(tpl.get('login-page'));
},
render:function (eventName) {
$(this.el).html(this.template(this.model.toJSON()));
this.bind("nav", this.nav,this);
this.model.bind("reset", this.render, this);
return this;
},
events:{
"click #login":"login"
},
login:function(){
FB.login(
function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
}
);
} else {
console.log('User cancelled login or did not fully authorize.');
}
},
{ scope: "email" }
);
}
});
これは機能し、Facebook アプリでログインできます。しかし、ログイン後に FB.event.subscribe をトリガーしたいです。しかし、これをbackbone.jsで実装する方法がわかりません
FB.Event.subscribe('auth.login', function(response) {
Backbone.history.navigate("#locallist",true)
});