떨림 중인 이미지와 데이터 업로드 문제

1268 단어 doubt
친구,
ASP에 사진과 관련 데이터를 업로드해야 합니다.net API(서버).
API, 우체부와 함께 테스트해 봤는데 효과가 아주 좋아요.Flatter에서 올릴 수가 없어요.
이것은 불러오는 것을 보여 줍니다. 아무런 응답도 받지 못했습니다.
그러니 이 문제를 해결해 주세요.
나는 여기에 내 코드의 그림을 올렸고 아래에 같은 내용을 추가했다.

비밀 번호
Future>imageUploader(파일fl) 비동기식
{
인쇄(Inside imageUploader() 파일 = $fl);
상태 설정()
{
홍보쇼
});
final mimeTypeData=lookupMimeType(fl.path,headerBytes:[0xFF,0xD8]).분열("/");
final imageUploadRequest = http.MultipartRequest('POST', apiUrl);  

final fileNew = await http.MultipartFile.fromPath('half_body_image', fl.path,contentType: MediaType(mimeTypeData[0], mimeTypeData[1]));

imageUploadRequest.files.add(fl);
imageUploadRequest.fields['name'] = imgFileName;
imageUploadRequest.fields['imgCatag1'] = imgCategory1;

try
{
  final streamedResponse = await imageUploadRequest.send();
  final response = await http.Response.fromStream(streamedResponse);

  if (response.statusCode != 200)
  {
    return null;
  }
  final Map<String, dynamic> responseData = json.decode(response.body);
  return responseData;
}
catch (e)
{
  print(e);
  return null;
}
}

좋은 웹페이지 즐겨찾기