【问题标题】:Flutter : unhandled exception: invalid argument颤振:未处理的异常:无效的参数
【发布时间】:2023-03-17 06:32:02
【问题描述】:

我正在尝试发送两个图像文件列表,但我有一个错误,我不知道为什么会发生这种情况 这是我使用的功能:

Future<dynamic> upload(List<File> imageFile, List<File> backID) async {

    var headers =
        Provider.of<LoginUserProvider>(context, listen: false).httpHeader;
    var uri = Uri.parse(
        "xyz");

    var request = new http.MultipartRequest("POST", uri);
    var requestCopy = new http.MultipartRequest("POST", uri);
    request.headers.addAll(headers);
    //request.headers.addAll(Environment.requestHeaderMedia);
    for (int i = 0; i < uploadedFilesList.length; i++) {
      var length = await imageFile[i].length();
      var stream =
          // ignore: deprecated_member_use
          new http.ByteStream(DelegatingStream.typed(imageFile[i].openRead()));
      var multipartFile = http.MultipartFile(
        'back_id_photos[$i]',
        stream,
        length,
        contentType: MediaType('application', 'x-tar'),
      );
      var multipartFilePhotos = new http.MultipartFile(
        'photos[$i]',
        stream,
        length,
        contentType: MediaType('application', 'x-tar'),
      );
      request.fields['section_id'] = VillaID.toString();
      request.fields['start_date'] = requeststartDate;
      request.fields['end_date'] = requestendDate;
      request.fields['names'] = _nameController.toString();
      request.fields['phones'] = _phoneController.toString();
      request.fields['photos'] = multipartFilePhotos.toString();
      request.fields['back_id_photos'] = multipartFile.toString();
      //contentType: new MediaType('image', 'png'));

      request.files.add(multipartFile);
      request.files.add(multipartFilePhotos);
      var response = await request.send();
      print(response.statusCode);
      response.stream.transform(utf8.decoder).listen((value) {
        print(value);
      });
      var streamedResponse = await requestCopy.send();
      var responses = await http.Response.fromStream(streamedResponse);
      // ignore: unused_local_variable
      final responseData = json.decode(responses.body) as Map<String, dynamic>;
      print(json.decode(responses.body));
      if (response.statusCode == 200 || response.statusCode == 201) {
        return true;
      }
    }
  }

var response = await request.send();

我在点 (.) 之前有错误,这是显示的错误

未处理的异常:无效参数(输入):不能为空 谁能告诉我该怎么做才能解决这个问题!

【问题讨论】:

  • 传递的某些参数值为空,检查相关方法,带参数并确保它们没有空值
  • 我建议对您添加到请求的每个数据应用调试点,并检查您为 request.send() 发送的内容。
  • 如何检查某些数据是否为空

标签: api flutter dart unhandled-exception


【解决方案1】:

如下发送您的多部分文件并使用await http.Multipart作为访问文件是异步功能并且需要运行承诺。

试试这个:

await http.MultipartFile(
    'back_id_photos[$i]',
    stream,
    length,
    contentType: MediaType('application', 'x-tar'),
  );

request.files.add(new http.MultipartFile.fromBytes('file', await File.fromUri("<path/to/file>").readAsBytes(), contentType: new MediaType('image', 'jpeg')))

Follow this link

【讨论】:

    猜你喜欢
    • 2019-11-27
    • 2019-10-05
    • 1970-01-01
    • 2021-07-16
    • 2020-12-05
    • 2022-01-05
    • 1970-01-01
    • 1970-01-01
    • 2020-12-09
    相关资源
    最近更新 更多