使用Ember.SimpleAuth实现用户登录逻辑


Ember.SimpleAuth是一个实现身份认证和授权的轻量级的Ember.js库。通过配置身份认证和授权策略可以实现任意形式的身份认证和授权机制。

搭建Ember.SimpleAuth开发环境

安装RubyGems。

1
2
  cd /path/to/ember-simple-auth
  bundle install

运行测试

  1. 在命令行中运行测试

    1
    
    rake test
    
  2. 在浏览器中运行测试

    1
    2
    3
    
    rackup
    
    # 然后访问:http://localhost:9292
    

运行示例

1
2
3
4
5
6
  cd examples
  bundle install

  ./runner

  # 然后访问:http://localhost:4567

博客评论基于Disqus