gpt4 book ai didi

flutter - 错误 : Unsupported operation: _Namespace when using image_picker flutter web

转载 作者:行者123 更新时间:2023-12-05 09:05:13 30 4
gpt4 key购买 nike

当我在 flutter web 中使用 image_picker 时收到问题'错误:不支持的操作:命名空间在 Object.throw [as throw] (http://localhost:56308/dart_sdk.js:5334:11)在 Function.get _namespace [as _namespace] (http://localhost:56308/dart_sdk.js:55299:17)在 io._File.new.lengthSync (http://localhost:56308/dart_sdk.js:53158:59)'

这在 android 中打开图像选择窗口时工作正常并且图像已成功预览但不能在 flutter web 中工作在 Web 案例中图像选择窗口打开但图像未获取。

这是我的图像选择器代码...

最终选择器 = ImagePicker();var imag = await picker.getImage(source: oursource);

var imageFile = File(imag.path);

最佳答案

使用这个:

kIsWeb
? Image.network(selectedImage.path)
: Image.file(File(selectedImage.path)),

我希望工作(为时已晚;))

关于flutter - 错误 : Unsupported operation: _Namespace when using image_picker flutter web,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67501904/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com