gpt4 book ai didi

c# - Visual Studio 2017 工作室显示错误 'This application is in break mode' 并引发未处理的异常

转载 作者:太空狗 更新时间:2023-10-29 20:56:10 25 4
gpt4 key购买 nike

我正在开发 Xamarin.Android 应用程序。每当我尝试下载 JSON 提要时,我都会收到错误消息“您的应用程序已进入中断状态,但没有可显示的代码,因为所有线程都在执行外部代码”

错误截图如下 Here's the screenshot of error

  • 我的 json 提要下载代码

     string url = "http://xamdev.epizy.com/getData1.php";

    public async void downloadJsonFeedAsync(String url) {
    var httpClient = new HttpClient();
    Task<string> contentsTask = httpClient.GetStringAsync(url);

    // await! control returns to the caller and the task continues to run on another thread
    string content = await contentsTask;
    Console.Out.WriteLine("Response Body: \r\n {0}", content);

    //Convert string to JSON object
    result = Newtonsoft.Json.JsonConvert.DeserializeObject<RootObject> (content);

    //Update listview
    RunOnUiThread (() => {
    listView.Adapter = new CusotmListAdapter(this, result.posts);
    progress.Visibility = ViewStates.Gone;
    });
    }
  • 我在这一行有错误

    string content = await contentsTask;

  • 这是我的json

    { “帖子”:[ { “编号”:“1”, “网址”:“”, "title":"在 Android 应用程序中将语音转换为文本", “日期”:“2017-06-16 06:15:18”, “内容”:“将语音转换为 Tex 在 Android 应用程序中将语音转换为文本 在 Android 应用程序中将语音转换为文本 在 Android 应用程序中”, “缩略图”:“http:\/\/st​​acktips.com\/wp-content\/uploads\/2017\/01\/Speech-to-Text-in-Android-375x300.jpeg” } ]

谁能告诉我我的代码有什么问题吗?提前致谢..

这是我的 php 网络服务代码-

<?php 

if($_SERVER['REQUEST_METHOD']=='GET'){

require_once('conn.php');

$sql = "SELECT * FROM space";


if ($result = mysqli_query($conn, $sql))
{
$resultArray = array();
$tempArray = array();


while($row = $result->fetch_object())
{

$tempArray = $row;
array_push($resultArray, $tempArray);
}


echo json_encode(array("result"=>$resultArray));
}
mysqli_close($conn);

}
?>

最佳答案

我很惊讶,但没有为这个问题发布最佳答案。对我来说,上述解决方案不起作用。要解决此问题,我会从调试菜单中禁用以下选项。

Debug > Options > General > Uncheck "Enable Just My Code"

更多详情,查看microsoft msdn帮助。

关于c# - Visual Studio 2017 工作室显示错误 'This application is in break mode' 并引发未处理的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44418120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com