我想更改调用函数时显示的占位符文本:
我尝试使用
with st.spinner(text="Fetching measures"):
measures = fetch_measures(userid, start_ts, end_ts)
但它只是在上面添加了一个新的警告“获取措施”。有没有办法只更改文本“Running function_name(…)”?
在 Streamlit 论坛找到了一种方法:
@st.cache(show_spinner=False)
def fetch_measures():
# do stuff
time.sleep(10)
def main():
with st.spinner(text="Fetching measures"):
measures = fetch_measures()
if __name__ == "__main__":
main()
只需在
show_spinner=False
装饰器中添加 st.cache()
即可删除警告。然后,使用 with st.spinner(text="Fetching measures")
添加您自己的警告。
您可以尝试通过
with
和 __enter__()
手动使用上下文管理器,而不是使用
__exit__(None, None, None)
语法