2020年7月13日 星期一

在Flask中獲取瀏覽者IP位址的方法

Flask是一個python輕量化的網頁框架
個人覺得其便利性及操作都相當便捷
相當適合一般使用者應用於網站規劃及設計

這次主要是紀錄一下,在Flask中如何獲取使用者的來源IP

其實要獲取使用者IP還挺單純的~~以下:

1.引入 request,如:

2. 使用:request.remote_addr 獲取使用者IP
並將其帶入template的傳遞參數中

3.在html頁面中讀取即可囉!