您的位置:首页 > 房产 > 家装 > 公司设计一个网站需要多久_东莞网络科技有限公司_工厂管理培训课程_百度推广外包

公司设计一个网站需要多久_东莞网络科技有限公司_工厂管理培训课程_百度推广外包

2025/1/10 6:24:11 来源:https://blog.csdn.net/u011213403/article/details/144986926  浏览:    关键词:公司设计一个网站需要多久_东莞网络科技有限公司_工厂管理培训课程_百度推广外包
公司设计一个网站需要多久_东莞网络科技有限公司_工厂管理培训课程_百度推广外包

选取图片

  /// 选取图片void pickImage() async {final input = html.FileUploadInputElement();// 单选input.multiple = false;input.accept = 'image/*';// 显示文件选择对话框html.document.body?.append(input);input.click();await input.onChange.first;// 获取选中的文件列表final files = input.files;if (files?.first.name.isEmpty == true) {return;}final file = files!.first;if (!await beforeUpload(file)) {input.remove();return;}final reader = html.FileReader();reader.onLoadEnd.listen((e) {final result = reader.result as Uint8List;uploadImage(result, file);});reader.readAsArrayBuffer(file);}

校验图片合法性

  /// 对上传的文件进行校验Future<bool> beforeUpload(html.File file) async {final size = await file.size;bool isSize = size / 1024 / 1024 < 15;if (!isSize) {print("超过15M限制,不允许上传~");return false;}// 添加对文件后缀名的限制final suffix =file.name.substring(file.name.lastIndexOf('.') + 1).toLowerCase();final isSuffixByJpgOrPng =(suffix == 'jpg' || suffix == 'jpeg' || suffix == 'png');final isJpgOrPng = file.type == 'image/jpg' ||file.type == 'image/jpeg' ||file.type == 'image/png';if (!isSuffixByJpgOrPng || !isJpgOrPng) {print("只能上传JPG、JPEG、PNG格式的图片~'");return false;}return true;}

使用http上传图片

  /// 上传文件void uploadImage(Uint8List data, html.File file) async {try {var request = http.MultipartRequest('POST', Uri.parse('https://cdn.server.com/api/upload'));request.files.add(http.MultipartFile.fromBytes('file', data,filename: file.name, contentType: MediaType.parse(file.type)));final response = await request.send();if (response.statusCode == 200) {final jsonStr = await response.stream.bytesToString();final jsonData = jsonDecode(jsonStr);/// TODO 处理请求成功之后的数据}} catch (e) {print("upload error -> $e");}}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com