http - 来自 http post 请求的响应在中间被切断

标签 http dart flutter

我正在尝试连接到一个通过 POST 请求提供一些客户数据的网络服务,但响应在中间被切断(或者可能是触发函数没有等待响应完成)。

这是在 flutter 环境中完成的,initState() 触发请求。

我有一个用于客户内容的数据服务CustomerDataService 扩展了DataService,其中包含一些常见的内容,例如发送请求等上。

简而言之,initState() 调用 CustomerDataService.getCustomers(request),后者又调用并等待 DataService.post(endpoint, request).

Http-package: import 'package:http/http.dart' as http;

initState() 是起点:

final CustomerDataService _dataService =
  new CustomerDataServiceProvider().getCustomerDataService();

@override
void initState() {
   _getCustomers();

   super.initState();
}

void _getActors() async {
   _dataService.getCustomers(
      request: new GetCustomersRequest(
        navigations: _dataService.suggestedNavigations
      ),
   ).then((response) {
     _customersResponse = response;

     /// Set the state
     refresh();
   });
}

然后我们有 CustomerDataService:

class _CustomerDataService extends DataService implements CustomerDataService

@override
Future<GetCustomersResponse> getCustomers(
  {@required GetCustomersRequest request}) async {

  String endpoint = createEndpoint(<String>[
    App.appContext.identityInstance.rootUrl,
    _CUSTOMERS_CONTROLLER,
    _GET_CUSTOMERS_ENDPOINT
  ]);

http.Response res = await post(endpoint: endpoint, request: request.toJson());

if (res.body == null) {
    return null;
  }

  try {
    /// This prints an invalid JSON that is cut in the middle
    print(res.body);
    /// This one naturally throws an exception since res.body isn't valid.
    dynamic json = jsonDecode(res.body);

    return new GetCustomersResponse.fromJson(json);
  } catch (e) {
    print("Exception caught when trying to get customers");
    print(e);
  } 

  return null;

jsonDecode 的异常是

Bad state: No element

然后我们有 DataService:

Future<http.Response> post(
  {@required String endpoint,
     Map<String, String> header,
     Map<String, dynamic> request}) async {
   if (header == null) {
     header = _getHeader();
   } else {
     header.putIfAbsent(_AUTHORIZATION_KEY, () => _headerAuthorizationValue());
   }

   http.Response res = await http.post(Uri.parse(endpoint), headers: header);

   _validateReponse(res);

   return res;
 }

我显然做错了什么,但我看不到...

DataService.post 中的请求没有在此代码中添加正文(request 参数),这是我进一步研究后将提交的另一张票,目前的解决方法就是把服务改成不期待 body 。

我已经验证该服务的行为与 postman 的预期一致。

我希望有人能看到我的错误在哪里。

谢谢!

编辑 1:

我稍微更改了代码,以便 initState() 不使用我创建的 DataServices,而是直接使用 http-package。

http.post('http://localhost:50140/api/customer/getcustomers').then((res) {
  if(res == null) {
    print('Response is empty');
  }

  print('Status code ${res.statusCode}');

  print(res.body);
});

super.initState();

并且发生了完全相同的事情,所以我认为这至少不是数据服务造成的。

编辑 2: 在有人深入研究之前,我只想说它似乎不是来自服务、http 包或数据服务的响应。

一旦我找到Bad state: no element 异常的原因,就会更新此博客

最佳答案

好吧,我不知道该怎么做,但事实证明问题标题不正确。

是终端在文本太大时将其剪切...

dataserviceshttp package 没有错误,但在从响应主体到我的强类型模型的转换中,在模型树的深处。

Customer 模型的关联属性有一个枚举,包括服务器端和客户端。

服务使用索引序列化枚举,我用于映射的库尝试按名称获取枚举(区分大小写)。

有问题的实体

@JsonSerializable()
class Item extends Object with _$ItemSerializerMixin

自动生成的映射

json['itemType'] == null
    ? null
    : /// I could probably just remove the singleWhere and add [(int)json['itemType']] instead but that would cause some hassle when I run build_runner again.
       ItemType.values
        .singleWhere((x) => x.toString() == "ItemType.${json['itemType']}")

因此,一旦我在服务器端做了一些更改(忽略了枚举的序列化并添加了另一个返回枚举字符串值的属性,改为小写)它就开始工作了。我想进一步研究这个问题,以便我可以序列化枚举索引而不是字符串值,并以这种方式映射它,但不幸的是我现在没有时间去做。

用于自动映射的包是build_runnerjson_serializable

很高兴我找到了解决方案,很抱歉该解决方案与实际帖子完全无关。我希望这至少可以帮助某人。

关于http - 来自 http post 请求的响应在中间被切断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51667068/

相关文章:

dart - Flutter 检测键盘结束隐藏动画

flutter - 如何在flutter中传递上下文或静态类中的任何参数?

Flutter - 在初始化时翻译

dart - 如何使 RefreshIndicator 消失?

javascript - 使用正则表达式格式化 HTTP header

java - 确定我正在下载的文件的 MIME 类型

firebase - 如何在 map() 中使用异步代码(Flutter、Firestore)

windows - 运行模拟器/物理设备时无法加载图像

javascript - 如何在 JavaScript 中执行同步 HTTP 请求

C# HTTPWebRequest 不能定时访问一个URL?