我需要执行从路由到另一条路线的重定向,并将一些数据传递给后一条路线。我使用查询字符串在路由之间传递数据,但我想避免这种情况。
我使用#if not sorted index with column Season
#df = df.sort_index(sort_remaining=True).sort_values('Season')
df['kite'] = df.groupby('Season')['kite'].cumsum()
print (df)
tot_pix Season caap_col lamma kite
datetime
2000-01-01 1914.0 2000.0 1.0 1.95025 117.737362
2000-01-04 1914.0 2000.0 1.0 1.95025 235.411539
2000-01-05 1914.0 2000.0 1.0 1.95025 353.407028
2001-01-04 1914.0 2001.0 1.0 1.95025 118.114809
2001-01-05 1914.0 2001.0 1.0 1.95025 236.275104
和res.redirect
在路由之间传递数据作为查询字符串。
当前代码:
url.format()
我想避免使用此方法,因为我不希望查询字符串出现在用户的浏览器中。
有没有其他方法可以做到不涉及查询字符串?