python web py入門(12)- 實現使用者登入論壇

來源:互聯網
上載者:User
前面已經介紹了怎麼註冊使用者,當使用者註冊成功之後,就需要使用帳號進行登入,這個登入過程是怎麼樣實現的呢。
首先是要有一個登入的串連,通過首頁點擊登入,就會進入登入的URL串連:http://127.0.0.1:8080/login,當你在網頁上點擊之後,就會在WEBPY的應用處理這個串連:
'/login', 'Login',  #登入

對,就是通過這個地方進行關聯,然後進入登入處理類:

class Login:    def GET(self):        return titled_render('登入').login()    def POST(self):        i = web.input(username='', password='')        user_id = model.User().login(i.username, i.password)        if user_id:            # 設定cookie            web.setcookie('user_id', str(user_id), settings.COOKIE_EXPIRES)            raise web.seeother('/user/%d' % user_id)        else:            return titled_render().failed('登入驗證失敗,請檢查帳號和密碼是否正確')
首先會顯示登入頁面如下:

在這裡,其實就是調用GET的方法,比較直接地使用login.html模板進行渲染返回給瀏覽器,當你輸入使用者名稱稱和密碼之後,就會通過POST方法把資料從瀏覽器發送給伺服器,接著在WEBPY裡就可以收到使用者名稱稱和密碼,分別儲存在i.username, i.password裡。調用model.User().login函數通過資料庫來確認使用者是否存在,並且密碼是否正確,如果正確,就可以把使用者ID儲存在瀏覽器的COOKIE裡,接著後面所有處理,就可以根據COOKIE裡的ID來進行判斷。

配套的源碼在:http://download.csdn.net/download/caimouse/10255258

TensorFlow API攻略
http://edu.csdn.net/course/detail/4495
TensorFlow入門基本教程
http://edu.csdn.net/course/detail/4369
C++標準模板庫從入門到精通 
http://edu.csdn.net/course/detail/3324
跟老菜鳥學C++
http://edu.csdn.net/course/detail/2901
跟老菜鳥學python
http://edu.csdn.net/course/detail/2592

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.