分享至
想請問大神們要怎麼FLASK要怎麼在route裡面更改外面的變數,再讓其他route也能抓來用。這邊是想在圖一的地方讓usertemp=user_account,想讓圖二redirect(url_for())裡面也能抓到usertemp這個字串或參數。
已邀請的邦友 {{ invite_list.length }}/5
使用 global。
x=1 def test() global x x = 3 print(x)
這個不知道會不會有洩漏或競合問題,畢竟是在網頁用的。
不會,這只是違反系統設計principle。也可以使用 session 或 singleton。
IT邦幫忙