这是我第一次使用 ember.js。当用户成功登录(经过身份验证)时,我正在尝试使用控制器执行操作。但是,我当前保存用户状态甚至更改属性 'this.set('userSignedIn', state);' 的方法 不管用。我不确定为什么,我猜这与我的“状态”变量的范围有关,或者“this”对象可能没有传递给“ref.authWithOAuthPopup()”。我希望有人能指出正确的方向。
var ref = new Firebase("https://<app>.firebaseio.com");
var state = false;
MyApp.ApplicationController = Ember.Controller.extend({
userSignedIn: false,
actions: {
signin: function() {
ref.authWithOAuthPopup("facebook", function(error, authData) {
if (error) {
console.log("Login Failed!", error);
} else {
console.log("Authenticated successfully with payload:", authData);
state = true;
}
});
this.set('userSignedIn', state);
console.log(state);
}, // End of signin
}
});