0

我有一个工作流星/科尔多瓦应用程序,它使用弹弓上传到 AWS/S3。我可以从浏览器和 iOS 上传和查看应用内照片。

但是,在 Android 上,我无法从 slingshot 提供的 AWS 链接加载照片并存储在我的数据库中,当我尝试上传照片时,我收到一条错误消息:

    "error : failed to upload file to cloud storage [-0]"

有没有什么我错过的/我应该为 android 配置 slingshot/我的应用程序的特定于 android 的东西?任何帮助将不胜感激。谢谢!

相关的客户端代码(减去文件限制):

//upload to AWS once file is selected
'change #imgUpload' : function(){
  var uploader = new Slingshot.Upload("uploadFiles");
  var questionId = Session.get('selectedQuestion');
  uploader.send(document.getElementById('uploadInput').files[0], function (error, downloadUrl) {
    if (error) {
      // Log service detailed response
      console.log(error)
      console.error('Error uploading' );
      alert (error);
    }
    else {
      Meteor.call('uploadImage', questionId, downloadUrl);
    }
  });

相关的服务器端方法:

  'uploadImage' : function(questionId, downloadUrl){
check(questionId, String);
check(downloadUrl, String);
questionsList.update({_id: questionId},
                      {$set: {
                        picUrl: downloadUrl
                      }
                    });
}, //end upload image

相关的服务器端指令(减去文件限制):

Slingshot.createDirective("uploadFiles", Slingshot.S3Storage, {
  bucket: <bucketname>,
  acl: "public-read",


  authorize: function(){
    //you can't upload if youre not logged in
    if(!this.userId){
      var message = "Please log in before posting files";
      throw new Meteor.Error("Login Required", message);
    }
    return true;
  },

  key: function(file){
    //store file in a directory based on a users team name
    var teamName = Meteor.user().roles.defaultGroup[0]
    return teamName + "/" + file.name;
  }
});

相关的 mobile_config.js 访问规则:

App.accessRule('https://<app-name>.herokuapp.com/*');
App.accessRule('http://<app-name>.herokuapp.com/*');
App.accessRule('https://s3.amazonaws.com/<bucketname>/*');
App.accessRule('http://localhost:3010/*');

显示图片的相关模板:

  {{#if theQuestion.picUrl}}
        <img src="{{theQuestion.picUrl}}" width="300px" height="300px"  class="userPic">
  {{/if}}

上传图片的相关模板:

<template name="uploader">
  <form id="imgUpload">
    <input id='uploadInput' class="fileLoader" name="file" type="file">
    <label for="file" class="uploadWords">Tap here to upload/take a  picture</label>
  </form>

文件限制:

    Slingshot.fileRestrictions("uploadFiles", {
  allowedFileTypes: ["image/png", "image/jpeg", "image/gif"],
  maxSize: 10 * 1024 * 1024 // 10 MB (use null for unlimited)
});
4

2 回答 2

0

如果其他人遇到此问题,以供将来参考,我最终撕掉了流星弹弓并与https://github.com/Lepozepo/S3一起使用。它运作良好。

请随时向我发送任何代码,但我基本上使用了示例中提供的样板代码。

于 2016-09-05T02:13:09.103 回答
0

遇到了同样的问题,我发现的是这个。我们使用 Webkit 创建的文件对象与 Andriod 上可用的文件对象不同。Webkit 上的文件对象构造函数是

new File([Blob],"FileName.png",{type: "image/png"});

与 Cordova 不同的是,在使用“uploader.send”而不是传递文件对象(由 Meteor/Cordova 内部创建)时解决问题,直接传递 Blob 对象,我用来创建 Blob 对象的代码是

b64toBlob = function(b64Data, contentType, sliceSize) {
contentType = contentType || '';
sliceSize = sliceSize || 512;

var byteCharacters = atob(b64Data.split(',')[1]);
var byteArrays = [];

for (var offset = 0; offset < byteCharacters.length; offset += sliceSize) {
    var slice = byteCharacters.slice(offset, offset + sliceSize);

    var byteNumbers = new Array(slice.length);
    for (var i = 0; i < slice.length; i++) {
        byteNumbers[i] = slice.charCodeAt(i);
    }

    var byteArray = new Uint8Array(byteNumbers);

    byteArrays.push(byteArray);
}

var blob = new Blob(byteArrays, {type: contentType});
return blob;}

我通过的方式最终构建了我的代码是

    if (Meteor.isCordova) {
    console.log("Detected Mobile device");
    var blobFile = b64toBlob(data, "image/png");
    blobFile.name = "userPhoto.png";
    newFile = blobFile;
} else {
    newFile = new File([b64toBlob(data, "image/png")], "usePhoto.png", {type: "image/png"});
}
uploader.send(newFile, function (error, downloadUrl) {
//Deal with the download URL
}
于 2016-10-21T05:55:14.223 回答