显示表单提交按钮。
单击此按钮时,表单内的所有小部件值将被批量发送到 Streamlit。
每个表格都必须有一个form_submit_button。 form_submit_button 不能存在于表单之外。
有关表格的更多信息,请查看我们的blog post。
函数签名
st.form_submit_button(label="Submit", help=None, on_click=None, args=None, kwargs=None)
参数 | 说明 |
---|---|
label (str) | 一个简短的标签,向用户解释此按钮的用途。默认为"Submit"。 |
help (str or None) | 将鼠标悬停在按钮上时显示的工具提示。默认为无。 |
on_click (callable) | 单击此按钮时调用的可选回调。 |
args (tuple) | 传递给回调的可选参数元组。 |
kwargs (dict) | 一个可选的 kwargs 字典传递给回调。 |
返回 | 说明 |
(bool) | 如果单击了按钮,则为真。 |
相关用法
- Python Streamlit st.form用法及代码示例
- Python Streamlit st.file_uploader用法及代码示例
- Python Streamlit st.experimental_singleton.clear用法及代码示例
- Python Streamlit st.bokeh_chart用法及代码示例
- Python Streamlit st.caption用法及代码示例
- Python Streamlit st.text_input用法及代码示例
- Python Streamlit st.area_chart用法及代码示例
- Python Streamlit st.title用法及代码示例
- Python Streamlit st.cache用法及代码示例
- Python Streamlit st.experimental_singleton用法及代码示例
- Python Streamlit st.empty用法及代码示例
- Python Streamlit st.error用法及代码示例
- Python Streamlit st.video用法及代码示例
- Python Streamlit st.vega_lite_chart用法及代码示例
- Python Streamlit st.slider用法及代码示例
- Python Streamlit st.header用法及代码示例
- Python Streamlit st.container用法及代码示例
- Python Streamlit st.plotly_chart用法及代码示例
- Python Streamlit st.bar_chart用法及代码示例
- Python Streamlit st.code用法及代码示例
- Python Streamlit st.experimental_memo.clear用法及代码示例
- Python Streamlit st.warning用法及代码示例
- Python Streamlit st.image用法及代码示例
- Python Streamlit st.markdown用法及代码示例
- Python Streamlit st.expander用法及代码示例
注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.form_submit_button。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。