我的BB应用程序没有从google feed api中检索数据

时间:2013-04-13 01:23:57

标签: jquery-mobile blackberry-simulator blackberry-webworks google-feed-api

我使用jQuery Mobile开发应用程序。 编译后,我在BB模拟器上测试但非能够显示Feed的数据。 我如何配置我的config.xml文件来实现这一目标。 下面是我当前的config.xml文件。

<?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="josiahaccounts@gmail.com" 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 个答案:

答案 0 :(得分: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>

因此,我不是将功能嵌套在访问中,而是将其分开。