1

我使用 jQuery Mobile 开发了一个应用程序。编译后,我在 BB 模拟器上进行了测试,但无法显示提要的数据。我如何配置我的 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>
4

1 回答 1

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>

因此,我没有将功能嵌套在访问权限内,而是将其分开。

于 2013-04-13T19:27:34.693 回答