- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发一个 flutter 应用程序,该应用程序将 http 请求发送到托管在 000webHost 上的远程 php 文件。
当我为桌面构建 Flutter 应用程序时,我设法检索信息,一切都很好。但是,由于另一个问题(视频播放器不适用于 Desktop....),我想回到 Web 构建。
我查看了几篇帖子,但没有发现与我类似的错误。有人说是由于跨域请求 (CORS) 导致的错误,但在我看来这不是这个问题。
当我尝试使用 http.post 检索数据时,出现以下错误:
browser_client.dart:87 POST https://<myadresse>.000webhostapp.com/<nameFile>.php net::ERR_HTTP2_PROTOCOL_ERROR
Uncaught (in promise) Error: XMLHttpRequest error.
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/_internal/js_dev_runtime/patch/core_patch.dart 906:28 get current packages/http/src/browser_client.dart 84:22 <fn>
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/zone.dart 1446:54 runUnary
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/future_impl.dart 150:18 handleValue
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/future_impl.dart 703:44 handleValueCallback
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/future_impl.dart 732:32 _propagateToListeners
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/future_impl.dart 526:7 [_complete]
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/stream_pipe.dart 61:11 _cancelAndValue
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/async/stream.dart 1302:7 <fn>
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/operations.dart 324:14 _checkAndCall
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/operations.dart 329:39 dcall
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/html/dart2js/html_dart2js.dart 37312:58 <fn>
at Object.createErrorWithStack (errors.dart:249)
at Object._rethrow (async_patch.dart:200)
at async._AsyncCallbackEntry.new.callback (zone.dart:1171)
at Object._microtaskLoop (schedule_microtask.dart:41)
at _startMicrotaskLoop (schedule_microtask.dart:50)
at async_patch.dart:166
我的代码:
void fetchData() async {
/**Map for instructions with php**/
var map = Map<String, dynamic>();
HandlerResponse
handlerResponse2; //Use to manage errors and parsing of received responses
map['action'] = Constants.GET_ALL_OPERATIONS;
try {
//Retrieving the response with the file containing the accesses to the database
http.Response responseCall = await http.post(Constants.ROOT,
body: map, headers: {"Access-Control-Allow-Origin": "*" , "Access-Control-Allow-Credentials": "true"});
//Definition of the behavior to adopt upon receipt of the response
handlerResponse2 = HandlerResponse(parseReponse: parseResponse);
//Recovery of response processing
_operations =
handlerResponse2.response(responseCall); //response(responseCall);
//Notify the change to widgets using the provider to update the interface
notifyListeners();
} on SocketException {
throw FetchDataException('No Internet connection');
}
}
当我使用 flutter 医生时:
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel dev, 1.25.0-4.0.pre, on Microsoft Windows [version 10.0.18362.900], locale fr-FR)
[√] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[√] Chrome - develop for the web
[√] Visual Studio - develop for Windows (Visual Studio Community 2019 16.4.5)
[√] Android Studio (version 4.0)
[√] Connected device (3 available)
• No issues found!
提前感谢您的帮助
最佳答案
好的,只是暂时修复了这个错误。为了允许来自 Chrome(web) 的 cors,必须遵循几个步骤
简单的方法是:
添加 https://chrome.google.com/webstore/detail/cors-unblock/lfhmikememgdcahcdlaciloancbhjino
在 Web 服务器(web)上运行应用程序
为了让您的应用程序直接运行到 Chrome(网络),您应该进行大量更改。
更具体地说,您会看到应用程序运行的 chrome 浏览器,它不是您真正同步的 chrome,它只是一个简单的空 chrome 浏览器的镜像。
如果空浏览器不允许您添加扩展程序
第一步:导航到flutter的目录,然后进入flutter\bin\cache并删除一个名为:flutter_tools.stamp的文件(以便在必要的更改后重建flutter)
第 2 步:导航到 flutter\packages\flutter_tools\lib\src\web 并打开文件 chrome.dart。
第 3 步:在文件中,您必须删除一行 '--disable-extensions'
第 4 步:在同一个文件中,正好在 final List<String> args
之前规范,你应该添加这个 final directory = 'C:\Users\{user_name}\{create_a_new_folder_and_add_here_its_name}';
并更改此行 '--user-data-dir=${userDataDir.path}'
到这个'--user-data-dir=$directory'
如果您不应用这些更改,则每次运行代码时都需要添加扩展,因为它不会被保存。
第 5 步:保存文件并重新运行您的代码。
第 6 步:当浏览器打开时,它将允许您应用任何您想要的扩展。
第 7 步:立即添加扩展程序。
第 8 步:享受 Flutter web。
关于Flutter Web Http 错误 : Uncaught (in promise) Error: XMLHttpRequest error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65291888/
reqwest v0.9 将 serde v1.0 作为依赖项,因此实现 converting serde_json errors into reqwest error . 在我的代码中,我使用 se
我有这个代码: let file = FileStorage { // ... }; file.write("Test", bytes.as_ref()) .map_err(|e| Mu
我只是尝试用angular-cli创建一个新项目,然后运行服务器,但是它停止并显示一条有趣的消息:Error: No errors。 我以这种方式更新了(希望有帮助):npm uninstall -g
我从我的 javascript 发送交易 Metamask 打开传输对话框 我确定 i get an error message in metamask (inpage.js:1 MetaMask -
这个问题在这里已经有了答案: How do you define custom `Error` types in Rust? (3 个答案) How to get a reference to a
我想知道两者之间有什么大的区别 if let error = error{} vs if error != nil?或者只是人们的不同之处,比如他们如何用代码表达自己? 例如,如果我使用这段代码: u
当我尝试发送超过 50KB 的图像时,我在 Blazor 服务器应用程序上收到以下错误消息 Error: Connection disconnected with error 'Error: Serv
我有一个error-page指令,它将所有异常重定向到错误显示页面 我的web.xml: [...] java.lang.Exception /vi
我有这样的对象: address: { "phone" : 888, "value" : 12 } 在 WHERE 中我需要通过 address.value 查找对象,但是在 SQL 中有函数
每次我尝试编译我的代码时,我都会遇到大量错误。这不是我的代码的问题,因为它在另一台计算机上工作得很好。我尝试重新安装和修复,但这没有帮助。这是整个错误消息: 1>------ Build starte
在我的代码的类部分,如果我写一个错误,则在不应该的情况下,将有几行报告为错误。我将'| error'放在可以从错误中恢复的良好/安全位置,但是我认为它没有使用它。也许它试图在某个地方恢复中间表情? 有
我遇到了 csv 输入文件整体读取故障的问题,我可以通过在 read_csv 函数中添加 "error_bad_lines=False" 来删除这些问题来解决这个问题。 但是我需要报告这些造成问题的文
在 Spring 中,验证后我们在 controller 中得到一个 BindingResult 对象。 很简单,如果我收到验证错误,我想重新显示我的表单,并在每个受影响的字段上方显示错误消息。 因此
我不知道出了什么问题,因为我用 Java 编程了大约一年,从来没有遇到过这个错误。在一分钟前在 Eclipse 中编译和运行工作,现在我得到这个错误: #A fatal error has been
SELECT to_char(messages. TIME, 'YYYY/MM/DD') AS FullDate, to_char(messages. TIME, 'MM/DD
我收到这些错误: AnonymousPath\Anonymized.vb : error BC30037: Character is not valid. AnonymousPath\Anonymiz
我刚刚安装了 gridengine 并在执行 qstat 时出现错误: error: commlib error: got select error (Connection refused) erro
嗨,我正在学习 PHP,我从 CRUD 系统开始,我在 Windows 上安装了 WAMP 服务器,当我运行它时,我收到以下错误消息。 SCREAM: Error suppression ignore
我刚刚开始一个新项目,我正在学习核心数据教程,可以找到:https://www.youtube.com/watch?v=zZJpsszfTHM 我似乎无法弄清楚为什么会抛出此错误。我有一个名为“Exp
当我使用 Jenkins 运行新构建时,出现以下错误: "FilePathY\XXX.cpp : fatal error C1853: 'FilePathZ\XXX.pch' precompiled
我是一名优秀的程序员,十分优秀!