我一直在尝试使用 streamlit 创建一个 Web 仪表板。运行段后的错误是,“ There are multiple identical st.button widgets with the same generated key.
”
我在下面附上了我的一段代码
x = 1
while x > 0:
if st.sidebar.button("1. Mouthshut.com"):
analyse(df1)
if st.sidebar.button("2. Bankbazaar"):
analyse(df2)
if st.sidebar.button("3. Creditkaro"):
analyse(df3)
if st.sidebar.button("4. Appgrooves"):
analyse(df4)
st.header("All the websites combined")
analyse(df)
if st.sidebar.button("Exit"):
break
我将不胜感激。谢谢