当我尝试webservice
通过$.getJSON
.
我有一个按钮,当我点击它时,我会从 awebservice
中获取 JSON,就这么简单。在我的计算机浏览器上,这可以完美运行,但是当我在 Tizen 的模拟器 (gear) 上将代码作为应用程序运行时,该GET
方法返回 : (canceled)
Request cancelled
。
这是代码(main.js):
$(window).load(function(){document.addEventListener('tizenhwkey', function(e) {
if(e.keyName == "back")
tizen.application.getCurrentApplication().exit();
});
$('.button').click(function(){
callWebService();//Calls webservice
return false;
});
function callWebService(){
//Works on desktop's Chrome
$.getJSON( "https://www.googleapis.com/freebase/v1/text/en/bob_dylan", function( data ) {
$('#ol_home_products').html(data.result);
})
.fail(function( err ) {
//Never called
console.log( err );
});
}
});
我可以在网络选项卡中看到取消错误,但控制台中没有显示任何内容。我不知道问题出在 Tizen 齿轮模拟器中,代码在浏览器中完美运行。
谢谢。
编辑:这是我的 config.xml,互联网特权在这里。
<?xml version="1.0" encoding="UTF-8"?><widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/myApp" version="1.0.0" viewmodes="maximized">
<tizen:application id="jVqvRz7h1V.myApp" package="jVqvRz7h1V" required_version="2.2"/>
<content src="index.html"/>
<feature name="http://tizen.org/feature/screen.size.all"/>
<icon src="icon.png"/>
<name>myApp</name>
<tizen:privilege name="http://tizen.org/privilege/internet"/>