簡體   English   中英

Cordova和Angular:插件不起作用

[英]cordova and angular: plugins not working

我是Angular和Cordova的新手。 我正在使用Cordova 6.2和angular 1.5.6。 如果創建一個新的cordova項目,我可以使插件正常工作,但是我無法在我的角度應用程序中使用。 我的問題出在我必須在IOS系統中設置StatusBarOverlaysWebView = false並且無法使其工作時出現(在iPhone 5s,iPhone 6和仿真器中也是如此)。 我嘗試使用其他插件,但沒有一個沒有用。 我在Google上搜索,發現問題可能是在angular加載后調用了插件,並且我需要手動引導angular才能使插件正常工作(在應用程序/設備准備就緒后調用它們)。 我按照指示進行了很多嘗試,但是我無法完成這項工作。 我什至不能從新的cordova項目中的cordova設備就緒基礎示例中的設備就緒事件復制代碼上觸發控制台日志。

甚至無法獲得StatusBar,啟動屏幕也無法在IOS上運行。

也許我只是想念一件可疑的事情。

這是我的代碼,謝謝!

myApp.js

window.addEventListener('deviceready', function onDeviceReady() {
    //Never fired!!!!!!
    console.log("readydevice");
    StatusBar.overlaysWebView(false);
    angular.bootstrap(document, ['myApp']);
    StatusBar.overlaysWebView(false);

}, false);

window.addEventListener('DOMContentLoaded', function onDeviceReady() {
    //Fired but console returns: StatusBar is not defined 
    console.log("readyDom");
    StatusBar.overlaysWebView(false);
    angular.bootstrap(document.body, ['myApp']);
    StatusBar.overlaysWebView(false);

}, false);



angular.module('myApp', [
    'ngRoute',
    'mobile-angular-ui',
    'ngSanitize'
]);

index.html

<!doctype html>
<html>
<head>
    <meta charset="utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0"/>
    <title>My app</title>
    <link rel="stylesheet" href="dist/css/mobile-angular-ui-base.min.css"/>
    <link rel="stylesheet" href="dist/css/general.css"/>
    <link rel="stylesheet" href="dist/css/custom.css"/>
    <script src="dist/js/winstore-jscompat.js"></script>
    <script src="dist/js/angular.min.js"></script>
    <script src="dist/js/angular-route.min.js"></script>
    <script src="dist/js/angular-sanitize.min.js"></script>
    <script src="dist/js/mobile-angular-ui.min.js"></script>
    <script src="dist/js/mobile-angular-ui.gestures.min.js"></script>
    <script src="javascript/config.js"></script>

</head>
<body ng-csp="">

<div class="app">
    <top-bar></top-bar>

    <div class="app-body">
        <div ng-view class="app-content scrollable-content"></div>
    </div>

    <menu-bottom></menu-bottom>

</div>

<script src="javascript/myApp.js"></script>
<script src="javascript/controllers/route.js"></script>
<script src="javascript/controllers/controller.js"></script>
<script src="javascript/directives/directive.js"></script>
</body>
</html>

config.xml

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.example.com" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>My App</name>
    <description>
        My App
    </description>
    <author email="develop@example.com" href="http://www.example.com">
        My Team
    </author>
    <content src="index.html" />
    <access origin="*" />
    <access launch-external="yes" origin="tel:*" />
    <access launch-external="yes" origin="mailto:*" />
    <engine name="ios" spec="~4.1.1" />
    <engine name="android" spec="~5.1.1" />
    <engine name="windows" spec="~4.3.2" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <preference name="AutoHideSplashScreen" value="true" />
    <preference name="splashscreen" value="splash" />
    <preference name="SplashScreenDelay" value="1000" />
    <preference name="Fullscreen" value="false" />
    <preference name="DisallowOverscroll" value="true" />
    <preference name="Orientation" value="portrait" />
    <preference name="StatusBarOverlaysWebView" value="false" />
    <preference name="StatusBarBackgroundColor" value="#000000" />
    <preference name="StatusBarStyle" value="default" />
    <platform name="android">
        <allow-intent href="market:*" />
        <!--<splash density="land-hdpi" src="res/images/splash.png" />-->
        <!--<splash density="port-hdpi" src="res/images/splash.png" />-->
    </platform>
    <platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
        <preference name="SuppressesIncrementalRendering" value="true" />
        <!--<splash src="res/images/ios/Default~iphone.png" width="320" height="480"/>-->
        <!--<splash src="res/images/ios/Default@2x~iphone.png" width="640" height="960"/>-->
    </platform>
    <icon src="res/images/icon.png" />

</widget>

我只需要添加:

<script type="text/javascript" src="cordova.js"></script>

在index.html中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM