我正在使用离子并试图用cordova下载一些文件。 我的错误是:
ionic.bundle.js:26794 ReferenceError: cordova is not defined
at http://10.0.0.8:8100/js/controllers/settingsCtrl.js:9:22
at http://10.0.0.8:8100/lib/ionic/js/ionic.bundle.js:56230:19
我的HTML:
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="lib/ngCordova/dist/ng-cordova.js"></script>
和控制器:
starter.controller('SettingsCtrl', function ($scope, $rootScope, $window, $ionicPopup,$cordovaFileTransfer,$ionicPlatform) {
$ionicPlatform.ready(function(){
var url = "http://cdn.wall-pix.net/albums/art-space/00030109.jpg";
var targetPath = cordova.file.documentsDirectory + "testImage.png";
缺少什么?