0
我想保護python-flask上的頁面,只能進入此頁面的用戶有限。python flask保護用戶頁面
我寫這樣的代碼:
def im_seller():
if not g.user.seller_fee_paid:
return redirect(url_for('account.seller_fee'))
return
@account.route('/account/seller/products.html')
@login_required
@im_seller
def seller_products():
不工作的腳本,給這個錯誤:
TypeError: im_seller() takes no arguments (1 given)
在那裏我錯了?謝謝大家。
是否安全是這種保護頁面的方法? – AutoSoft
如果沒有看到'g.user'的實際代碼,很難討論安全問題。 –