- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在我的 flutter 应用程序中使用 http.get 或 http.post 从我的 API 服务器获得响应。
我需要做一些与问题 Flutter app background use of the compute function 类似的事情.
我想我可以在计算函数中解析我的响应 json,这没问题,是否可以在 http.get 请求中使用 compute() 函数?
这是因为我看到我的微调器 (CircularProgressIndicator) 在解析数据(解决了将解析函数放在计算中)和通过 3G/4G 执行请求时滞后,这可能是由于网络性能不佳。
print(await calculate("aaaaa"));
Future<String> calculate(String foo) async {
var url = serverDomain+'/v1/search-event';
var body = json.encode({
"name": foo
});
// Lagging on await response??
final response = await http.post(url, headers:globalHeader, body:body);
return await compute(_isolate, response.body);
}
//Very cpu intensive operation, no lag
static String _isolate(String a){
var ab;
print(jsonDecode(a));
for (int i = 0; i < 999999; i++){
ab = i ^ 2;
}
return a;
}
我做错了什么?
最佳答案
compute
可以在带有 HTTP 请求的 Future 中使用,http.post
不应阻塞 UI 线程。如何在屏幕上显示 CircularProgressIndicator?如果您能够为 HTTP 请求中使用的端点提供重现,这也会很有帮助。由于未提供端点,我尝试使用 Future.delayed 模拟其响应时间的模拟 HTTP 请求在 Isolate 上进行最小重现。
下面是我如何显示/隐藏 ProgressIndicator。
void _runCalculate() {
/// show ProgressIndicator
setState(() {
showProgress = true;
});
calculate().then((value) {
debugPrint('calculate finished: $value');
/// Hide ProgressIndicator
setState(() {
showProgress = false;
});
});
}
我已经稍微修改了您的最小重现来模拟 HTTP 请求的响应延迟。
Future<bool> mockHttpRequest() async {
await Future.delayed(const Duration(seconds: 3));
return true;
}
Future<String> calculate() async {
// var url = serverDomain+'/v1/search-event';
// var body = json.encode({
// "name": foo
// });
// Lagging on await response??
debugPrint('mockHttpRequest start');
final response = await mockHttpRequest();
debugPrint('mockHttpRequest end: $response');
return await compute(_isolate, response);
}
//Very cpu intensive operation, no lag
static String _isolate(bool a) {
int ab = 0;
for (int i = 0; i < 999999; i++) {
ab = i ^ 2;
}
return ab.toString();
}
完整重现
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
var showProgress = false;
String? isolateResponse;
void _runCalculate() {
debugPrint('calculate start');
/// show ProgressIndicator
setState(() {
showProgress = true;
});
calculate().then((value) {
debugPrint('calculate finished: $value');
/// Hide ProgressIndicator
setState(() {
showProgress = false;
isolateResponse = value;
});
});
}
Future<bool> mockHttpRequest() async {
await Future.delayed(const Duration(seconds: 3));
return true;
}
Future<String> calculate() async {
// var url = serverDomain+'/v1/search-event';
// var body = json.encode({
// "name": foo
// });
// Lagging on await response??
debugPrint('mockHttpRequest start');
final response = await mockHttpRequest();
debugPrint('mockHttpRequest end: $response');
return await compute(_isolate, response);
}
//Very cpu intensive operation, no lag
static String _isolate(bool a) {
int ab = 0;
for (int i = 0; i < 999999; i++) {
ab = i ^ 2;
}
return ab.toString();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body:
Center(
child: showProgress
? const CircularProgressIndicator()
: Text('Isolate response: $isolateResponse'),
),
// }),
floatingActionButton: FloatingActionButton(
onPressed: _runCalculate,
tooltip: 'Run',
child: const Icon(Icons.play_arrow),
),
);
}
}
关于flutter - 我可以使用 flutter compute 函数来 http get 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55180602/
是否可以使用 boost::compute 复制自定义结构数组?例如 struct A { float a; }; struct AB { float a; float b; }; BOOST_COM
有谁知道如何在项目上配置的Google Cloud Networks之间移动现有的VM实例?我知道您可以在创建新VM时指定网络,但是似乎没有一种实例化它即可对其进行更改的功能。 任何指针表示赞赏! 保
我正在尝试遵循Google云平台控制台上的教程,以使用Compute Engine创建MongoDB应用程序。我遵循创建虚拟机的教程,但未创建它们,并返回以下错误: 字段“resource.netwo
我想知道是否可以将一个实例的类型更改为另一个实例,例如: n1-standard-1至n1-standard-2 我在文档中没有看到任何内容,但可能是我错过了一些东西。 如果这是不可能的,我该如何处理
我正在尝试让我的GCE实例监听多个IP地址(出于SEO的原因-在同一实例上托管多个低流量站点)。 最终目标:mydomain.com指向IP1,myotherdomain.es指向IP2,GCE实例将
使用scp,我可以添加-r标志以通过ssh将目录下载到本地计算机。 使用时: gcloud compute scp -r 它说“ -r”不是可用选项。 没有-r,我会收到一条错误消息,说我的源路径是一
仅某些IP地址的http负载均衡器存在严重问题。 我在这里还看到了其他一些帖子。我们确保防火墙正常,甚至删除并重新创建了转发规则。自IP更改以来,这非常令人讨厌。 仍然没有喜悦。问题仅影响某些IP地址
我正在尝试删除/删除不再使用的静态IP地址,并且看不到执行此操作的方法。我可以从文档中得到的最接近的是this page,它说: When an instance is stopped, you ca
我每天从台式计算机运行一个简单的任务 3 次。它在下午 4 点、晚上 8 点和凌晨 1 点连接到某个网站,下载少量数据(小于 50mb),并将其存储在硬盘上。每天运行这一点很重要,所以我正在考虑将其转
我是一个关于在Google Compute Engine上联网的问题。 是否可以在您的帐户上设置默认的“源代码/ IP范围”,以便在创建新规则时自动设置此值? 例如,如果我创建此规则: gcloud
我正在尝试使用 POST gcloud CLI 创建一个“带有容器”的 GCE 实例(由 https://www.googleapis.com/compute/v1/projects/{project
我们像这样通过命令行创建实例: gcloud compute instances create instance-name [--stuff otherstuff] --metadata-from-f
在我的本地 macOS 上,以下命令运行良好: $ gcloud source repos clone myrepo --project=myproject (虽然我不确定它是否有效,因为之前我遵循了
在 AWS SDK , EC2实例可以通过 AmazonEC2Client 以编程方式启动.是否GCP一般或Compute Engine特别just offer the CLI-based gclou
我想使用 SparkleShare 在计算机之间同步文件,所以我正在寻找一种方法让 git 存储库在线保存文件。 我正在考虑使用 Google Compute Engine 来托管它们。如果我只为我实
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
几周前,我在随意玩弄 Google Cloud Console,并创建了一个 Compute Engine VM。这个过程就像“创建一个虚拟机,命名它,保存”一样简单,就是这样。我现在不需要 Comp
我正在关注 this instruction在 GCE 上设置多个实例或服务器集群。它运行良好,但我不知道如何更新应用程序代码。例如,我有一些错误修复,需要更新代码并重新加载所有实例。无论如何我可以做
我在两个 VM 实例上有一个 node.js 应用程序,我试图通过网络负载平衡来进行负载平衡。为了测试我的服务器是否已启动并提供服务,我在我的应用程序内部监听端口上收到了运行状况检查请求“/healt
如何在GCE中永久设置实例的主机名?我可以通过主机名进行设置,但是重启后它又消失了。 我试图输入元数据(主机名:f.q.d.n),但这没有完成。但是它应该通过元数据(https://github.co
我是一名优秀的程序员,十分优秀!