代码之家  ›  专栏  ›  技术社区  ›  rodrigoalvesvieira

Rails3中的简单管理功能

  •  4
  • rodrigoalvesvieira  · 技术社区  · 14 年前

    谢谢!

    2 回复  |  直到 14 年前
        1
  •  2
  •   Community CDub    7 年前

    您可以使用脚手架来生成表单代码和控制器代码。

    http://guides.rubyonrails.org/getting_started.html#getting-up-and-running-quickly-with-scaffolding

    这里有一个类似的问题: Backend administration in Ruby on Rails

    hth公司

        2
  •  6
  •   Skilldrick    14 年前

    看一看 this Railscast on HTTP simple authentication :

    # products_controller.rb
    before_filter :authenticate
    
    protected
    
    def authenticate
      authenticate_or_request_with_http_basic do |username, password|
        username == "foo" && password == "bar"
      end
    end
    

    就这么简单!