作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过 widgets.FileUpload
创建一个文件上传事件和我对 widgets.Button
所做的一样使用 .on_click(some_function)
.有没有办法做这样的事情
import ipywidgets as widgets
def do_something_with_file(fu):
content = fu.data[0].decode('utf-8')
# doing something with the file content and get some string output
return 'some string'
str_file_upload = widgets.FileUpload(accept='.txt', multiple=False)
str_file_upload.on_upload(do_something_with_file)
最佳答案
可以观察_counter的变化
例子:
from ipywidgets import widgets
uploader = widgets.FileUpload()
display(uploader)
def on_upload_change(change):
print(change)
uploader.observe(on_upload_change, names='_counter')
关于python - 使用 ipywidgets FileUpload 小部件时,我可以定义文件上传操作吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59259414/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!