1

jQuery Mobile을 사용하여 앱을 개발합니다. 컴파일 후 BB 시뮬레이터에서 테스트했지만 피드의 데이터를 표시 할 수 없습니다. 이 작업을 수행하려면 어떻게 config.xml 파일을 구성해야합니까? 다음은 현재 사용중인 config.xml 파일입니다.내 BB 앱이 google 피드 api에서 데이터를 검색하지 않습니다.

<?xml version="1.0" encoding="utf-8"?> 
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.0" rim:header="RIM-Widget: rim/widget"> 
    <name>on the Go!</name> 
    <description>Get latest information on the Go!</description> 
    <content src="index.html" rim:allowInvokeParams="true"/> 
    <author href="" rim:copyright="Copyright 2013" email="[email protected]" xml:lang="en" its:dir="rtl" >Josiah Gerald</author> 
    <access uri="http://ajax.googleapis.com" subdomains="true" > 
     <feature id="blackberry.invoke.BrowserArguments" /> 
     <feature id="blackberry.app" /> 
    </access> 
    <rim:loadingScreen 
     backgroundColor="#FFFFFF" 
     backgroundImage="images/news.png" 
     foregroundImage="theme/images/ajax-loader.gif" 
     onRemotePageLoad="true" 
     onLocalPageLoad="true" 
     onFirstLaunch="true"> 
     <rim:transitionEffect type="fadeIn" duration="300" /> 
    </rim:loadingScreen> 
    <content src="index.html" /> 
    <rim:cache disableAllCache="true" /> 
    <rim:connection timeout="60000"> 
     <id>TCP_WIFI</id> 
     <id>MDS</id> 
     <id>BIS-B</id> 
     <id>TCP_CELLULAR</id> 
     <id>WAP2</id> 
     <id>WAP</id> 
    </rim:connection> 
    <license>(c) 2013 www.mobilenizer.com</license> 
    <icon src="images/icon.png" /> 
</widget> 

답변

1

마침내 작동하게되었습니다.

<access uri="http://ajax.googleapis.com" subdomains="true" /> 
    <feature id="blackberry.invoke" /> 
    <feature id="blackberry.app" required="true" version="1.0.0"> 
     <param name="websecurity" value="disable" /> 
    </feature> 

그래서보다는 내부 액세스 기능을 겹치기, 그것을 분리 : 여기

솔루션이다.