当我使用以下 ajax 代码对其进行测试时,我运行了一个安静的 Web 服务并且它正在工作:
$(document).on('pagebeforeshow','#page2',
function(){
$('#submit').click(function()
{
var name = $("#username").val();
var surname = $("#usersurname").val();
alert(name + " " + surname);
$.getJSON("http://localhost:8080/rest/index.php/api/practice/test/name/"+name+"/surname/"+surname + "/format/json",
function(data)
{
alert(data.result);
});
});
});
现在我想使用此代码访问相同的宁静 Web 服务,但通过 android 模拟器。这是我在使用PhoneGap的模拟器中使用的代码:
$(document).on('pagebeforeshow','#page2',
function(){
$('#submit').click(function()
{
var name = $("#username").val();
var surname = $("#usersurname").val();
alert(name + " " + surname);
$.getJSON("http://10.0.2.2:8080/rest/index.php/api/practice/test/name/"+name+"/surname/"+surname + "/format/json",
function(data)
{
alert(data.result);
});
});
});
我还对 config.xml 文件进行了如下更改:
<access origin="http://10.0.2.2/rest/index.php/api/practice/test" subdomains="true"/>
该应用程序似乎仍然无法正常工作。请有人帮忙