gpt4 book ai didi

java - Android 中使用 PhoneGap 的异步任务

转载 作者:行者123 更新时间:2023-12-01 12:32:16 25 4
gpt4 key购买 nike

这里我想调用 html 页面。我为此使用了 Phone Gap。但现在我想用 AsyncTask 调用 html 页面。有人可以帮助我如何调用
super.loadUrl("文件:///android_asset/www/chapter_one.html", 10000);在AsyncTask中。

这是我的 Activity 代码。

public class Chapter_Detail extends DroidGap
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

Intent intent = getIntent();
String stringContent = intent.getExtras().getString("Chapter_Content");
Log.e("stringContent in Performance Details "," = " + stringContent);

if(stringContent.equals("oop concept"))
{
super.loadUrl("file:///android_asset/www/chapter_one.html", 10000);
}
}
}

最佳答案

您需要借助 ajax 调用来完成此操作。下面的代码调用服务 url,您将得到响应。

function callRest(uName, pwd, serviceUrl, pxml) 
{
$.support.cors = true;
$.ajax({
cache: false,
type: "GET",
url: serviceUrl,
dataType: "text",
username: uName,
password: pwd,
statusCode: {
200: function () {

},
500: function () {

}
},

success: function (res, status, xhr) {
//res contains response,
},
error: function (XMLHttpRequest, status, error_is) {
alert('Error: ' + error_is);
}
});
}

关于java - Android 中使用 PhoneGap 的异步任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25845878/

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