dart:html 中的 Geolocation.getCurrentPosition 在启用 NNBD 的发布模式下不工作
Posted
技术标签:
【中文标题】dart:html 中的 Geolocation.getCurrentPosition 在启用 NNBD 的发布模式下不工作【英文标题】:Geolocation.getCurrentPosition from dart:html not working in release mode with NNBD enabled 【发布时间】:2021-03-31 12:16:22 【问题描述】:有人知道为什么dart:html
中的Geolocation.getCurrentPosition()
在启用了声音空安全 (flutter run --release -d chrome
) 的发布模式下运行时不起作用吗?
进行此调用时,我确实得到了 Geoposition
的实例,但是当我尝试访问其中一个成员时,我收到以下错误消息:
Uncaught TypeError: n.grq is not a function
at main.dart:39
at WD.a (async_patch.dart:316)
at WD.$2 (async_patch.dart:341)
at VR.$1 (async_patch.dart:292)
at UG.SB (zone.dart:1612)
at UG.ug (zone.dart:1611)
at Tf.$0 (future_impl.dart:118)
at Object.n3 (future_impl.dart:733)
at Y.ib (future_impl.dart:539)
at T7.$0 (future_impl.dart:577)
如果我在调试中运行相同的代码(flutter run -d chrome
或没有 NNBD flutter run -d chrome --release --no-sound-null-safety
一切正常)。重现此行为的简单 App 如下所示(它是默认 Flutter 计数器模板的略微更改版本):
import 'dart:html' as html;
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main()
runApp(MyApp());
class MyApp extends StatelessWidget
// This widget is the root of your application.
@override
Widget build(BuildContext context)
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
class MyHomePage extends StatefulWidget
MyHomePage(Key? key, this.title) : super(key: key);
final String? title;
@override
_MyHomePageState createState() => _MyHomePageState();
class _MyHomePageState extends State<MyHomePage>
String _position = "Unknown";
Future<void> _currentPosition() async
final geolocation = html.window.navigator.geolocation;
final position = await geolocation.getCurrentPosition();
final latitude = position.coords?.latitude ?? 'n/a';
final longitude = position.coords?.longitude ?? 'n/a';
setState(()
_position =
'Latitude: $latitude, Longitude: $longitude';
);
@override
Widget build(BuildContext context)
return Scaffold(
appBar: AppBar(
title: Text(widget.title!),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'Your current position is:',
),
Text(
'$_position',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _currentPosition,
tooltip: 'Current position',
child: Icon(Icons.location_on),
),
);
【问题讨论】:
【参考方案1】:这原来是 Dart 中的一个错误。我创建了一个可以在此处跟踪的错误报告:https://github.com/dart-lang/sdk/issues/45562
【讨论】:
以上是关于dart:html 中的 Geolocation.getCurrentPosition 在启用 NNBD 的发布模式下不工作的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点#dart系列之:浏览器中的舞者,用dart发送HTTP请求
使用 dart:HTML 库在 Flutter Web 中选择文件时如何获取 Flutter 中的文件名?
科尔多瓦中的 navigator.geolocation.getCurrentPosition 仅提供 10 米的精度
使用 navigator.geolocation.watchPosition 时 React 中的无限循环
react-native 中的 navigator.geolocation.getCurrentPosition 是不是与本地地理定位方法一样准确?
无法从 react-native 中的 navigation.geolocation.getCurrentPosition() 返回位置