flutter运行时提示下面错误,请问如何解决?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter运行时提示下面错误,请问如何解决?相关的知识,希望对你有一定的参考价值。

* What went wrong:
Could not open settings remapped class cache for 3gvp67rxesfd2nfkbvtuzjg3o (C:\Users\Administrator\.gradle\caches\5.6.2\scripts-remapped\settings_3j4cktj76tcwqa3p6pnijdwdi\3gvp67rxesfd2nfkbvtuzjg3o\settings8410a2d21ed2f87c8a0398566330ee52).
> Could not open settings generic class cache for settings file 'C:\Users\Administrator\androidStudioProjects\flutter_app\android\settings.gradle' (C:\Users\Administrator\.gradle\caches\5.6.2\scripts\3gvp67rxesfd2nfkbvtuzjg3o\settings\settings8410a2d21ed2f87c8a0398566330ee52).
> BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 57

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s
Finished with error: Gradle task assembleDebug failed with exit code 1

参考技术A 一般这样的问题都是Flutter内部导致的问题,所以优先建议命令执行:flutter clean,然后再次执行操作。 参考技术B

王红元《Flutter从入门到实战》(高清视频)百度网盘   

 链接: https://pan.baidu.com/s/1DhInF6MZ0UJ1VEpRcx0uaQ

提取码: j6z6 复制这段内容后打开百度网盘手机App,操作更方便哦     

若资源有问题欢迎追问~    

如何解决 Flutter 上的 XMLHttpRequest 错误?

【中文标题】如何解决 Flutter 上的 XMLHttpRequest 错误?【英文标题】:how to solve XMLHttpRequest error on flutter? 【发布时间】:2021-11-11 11:34:00 【问题描述】:

当我运行我的代码时,我收到以下错误,我的应用程序用于从 youtube 下载视频声音。

错误

调试服务监听 ws://127.0.0.1:57539/2eLyP6sNDkg=/ws XMLHttpRequest 错误。 TypeError:无法读取 null 的属性(读取“缩略图”) 在 YoutubeMP3._YoutubeMP3State.new.getInfo (http://localhost:62257/packages/utube_mp3/YoutubeMP3.dart.lib.js:507:40) 在getInfo.throw() 在 http://localhost:62257/dart_sdk.js:40652:38 在 _RootZone.runBinary (http://localhost:62257/dart_sdk.js:40508:58) 在 _FutureListener.thenAwait.handleError (http://localhost:62257/dart_sdk.js:35445:33) 在句柄错误(http://localhost:62257/dart_sdk.js:36033:51) 在 Function._propagateToListeners (http://localhost:62257/dart_sdk.js:36059:17) 在 _Future.new.[_completeError] (http://localhost:62257/dart_sdk.js:35905:23) 在 async._AsyncCallbackEntry.new.callback (http://localhost:62257/dart_sdk.js:35944:31) 在 Object._microtaskLoop (http://localhost:62257/dart_sdk.js:40808:13) 在 _startMicrotaskLoop (http://localhost:62257/dart_sdk.js:40814:13) 在 http://localhost:62257/dart_sdk.js:36279:9

函数获取信息


 //

 Future<void> getInfo() async 
   insertBody(videoURL.text);
   setState(() 
     progress = "";
     status = "Download";
     downloadsuccess = false;
     isDownloading = false;
     isFetching = true;
     fetchSuccess = false;
   );
   try 
     var response = await http.post("https://www.y2mate.com/fr22",
         body: body, headers: headers);

     video = Result.convertResult(response.body);
     setState(() 
       isFetching = false;
       fetchSuccess = true;
     );
    catch (e) 
     print(e.toString());
     setState(() 
       isFetching = true;
       fetchSuccess = false;
     );
   
   print("$video.thumbnail\n$video.audioName\n$video.vid\n$video.id");
 

【问题讨论】:

试试我的回答here希望对你有帮助 谢谢,但还是不行 现在是什么问题 【参考方案1】:

您的错误消息表明 getInfo 正在尝试访问 (null).thumbnail。这可能是您最后的打印声明。如果 Result.convertResult() 因异常而失败并且 video=null,则执行将移至您的 catch() 块,然后尝试打印“video.thumbnail”(不存在)

您可以尝试使用 if (video!=null) 包装您的最后一个打印语句,或者将其移到您的 try 块中。

【讨论】:

我将最后一个打印语句重写为 print("error");我在运行我的程序时得到它,我该怎么做才能得到正确的结果?

以上是关于flutter运行时提示下面错误,请问如何解决?的主要内容,如果未能解决你的问题,请参考以下文章

在运行SQL时出现错误,请问如何解决?

Flutter Web iFrame 奇怪的行为

Python PyAutoGUI错误提示求解?

通过jquery实现异步上传时总是提示parsererror,请问应该怎么解决

请问一下MATLAB出现这种情况应该如何解决?选前两个都出现上面那种情况

我使用vscode写node.js代码,出现如下问题,请问如何处理?