我正在使用 Django 和 PostgreSQL 制作一個專案。用戶必須注冊,然后登錄。
問題
雖然用戶是signing up我問不同的問題like name, email等一個領域是**Country(home country)**. 一旦資料存盤在資料庫中。現在如果用戶想登錄我想要他/她可以see all the data related to home country. e.g UK people can't see data from US or any other country and vise versa。
uj5u.com熱心網友回復:
我想您可以根據用戶國家/地區過濾資料,例如:
user = request.user
data = *DataModle*.objects.filter(country=user.country)
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/401947.html
標籤:Python sql 姜戈 PostgreSQL的
