首先,我已经阅读了Integrating Devise with Backbone.js。但最重要的是 - 我不使用设计。
现在我已经创建了用于注册和身份验证的主干视图(主干只是连接到 Rails 以获得后端支持)。我想知道的是-是否有可能存储有关用户是否登录的信息以及您建议将其存储在哪里,或者当我需要信息时我必须连接到后端?
更新 1
我尝试在登录后将用户存储在全局变量中,该变量在路由器(骨干网)中声明
class Notes.Routers.Articles extends Backbone.Router
currentUser: null
在一个视图中
@currentUser = response // it's a response object from ajax call
Backbone.history.navigate("articles",true)
并在目标视图中
console.log @currentUser
没用,有什么建议吗?