Phonegap Camera Api无法正常工作(无法加载资源)

时间:2013-08-23 17:14:41

标签: ios cordova phonegap-plugins cordova-3

我正在使用phonegap第3版。

我安装了cordova和phonegap,但出于某种原因,我的控制台显示phonegap.js和cordova.js无法加载。它们不在我的js文件夹中,所以我认为这很奇怪,但是phonegap一直对我有用,直到今天我尝试使用它们的相机API函数。我运行了相机的插件安装命令,并将其添加到我的config.xml文件中:

<feature name="Camera">
    <param name="ios-package" value="CDVCamera" />
</feature>

但是相机在iOS模拟器中不起作用,也不能在Web浏览器上运行。在网络控制台中,我收到了这些错误。

Failed to load resource: The requested URL was not found on this server: file:///Users/thomas/dev/myapp/www/cordova.js

当我点击任何按钮时,我收到错误

TypeError: 'undefined' is not an object (evaluating 'navigator.camera.getPicture')

这是我的代码:(直接从phonegap网站复制)

<!DOCTYPE html>
<html>
  <head>
    <title>Capture Photo</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

    var pictureSource;   // picture source
    var destinationType; // sets the format of returned value

    // Wait for device API libraries to load
    //
    document.addEventListener("deviceready",onDeviceReady,false);

    // device APIs are available
    //
    function onDeviceReady() {
        pictureSource=navigator.camera.PictureSourceType;
        destinationType=navigator.camera.DestinationType;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoDataSuccess(imageData) {
      // Uncomment to view the base64-encoded image data
      // console.log(imageData);

      // Get image handle
      //
      var smallImage = document.getElementById('smallImage');

      // Unhide image elements
      //
      smallImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      smallImage.src = "data:image/jpeg;base64," + imageData;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoURISuccess(imageURI) {
      // Uncomment to view the image file URI
      // console.log(imageURI);

      // Get image handle
      //
      var largeImage = document.getElementById('largeImage');

      // Unhide image elements
      //
      largeImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      largeImage.src = imageURI;
    }

    // A button will call this function
    //
    function capturePhoto() {
      // Take picture using device camera and retrieve image as base64-encoded string
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function capturePhotoEdit() {
      // Take picture using device camera, allow edit, and retrieve image as base64-encoded string
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 20, allowEdit: true,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function getPhoto(source) {
      // Retrieve image file location from specified source
      navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50,
        destinationType: destinationType.FILE_URI,
        sourceType: source });
    }

    // Called if something bad happens.
    //
    function onFail(message) {
      alert('Failed because: ' + message);
    }

    </script>
  </head>
  <body>
    <button onclick="capturePhoto();">Capture Photo</button> <br>
    <button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br>
    <button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button><br>
    <button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button><br>
    <img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
    <img style="display:none;" id="largeImage" src="" />
  </body>
</html>

3 个答案:

答案 0 :(得分:0)

我认为它缺少www文件夹的正确结构。 现在我不在办公室检查名字,但是:

<root_folder_name> / wwww
               index.html
                     /camera
                             index.html 
                  /plugins
                         /<camera plugin name>
                                               /test
                  /platform
                       /ios
                           /<projectname>.xcodeproj

或类似的结构。 无论如何,来自:   plugins / <camerapluginmane> /test/index.htmlcamera文件夹与另一个index.html复制到您的根www文件夹。

还需要一个main.css一个main.js和一个cordova-incl.js所有文件都在测试文件夹中。

只需仔细检查/test/index.html源代码,并在www根文件夹中提供该结构和文件。

明天或周一我可以在办公室编辑这个答案并更正名称。

你的错误:“TypeError:'undefined'不是一个对象(评估'navigator.camera.getPicture'”它在web部分(www结构)并且代码调用没有转到ios文件(.h。 m)呢!

我希望它有所帮助!

答案 1 :(得分:0)

我知道回答这个问题为时已晚,但一个有效的例子并不迟。下面的代码对我有用。

a

答案 2 :(得分:0)

在终端中,在我应用的主文件夹中,我运行了cordova plugin add cordova-plugin-camera。我使用PhoneGap在浏览器上安装了它,但我显然需要再次执行此操作,以便为XCode创建的iOS版本安装它。

Plugin "cordova-plugin-camera" already installed on browser. Installing "cordova-plugin-camera" for ios

这会将.h和.m文件添加到我的平台 - &gt; ios-&gt; APPNAME-&gt;插件文件夹中。

现在一切正常!