Meteor: Cloudinary

后端 未结 3 1547
别那么骄傲
别那么骄傲 2021-01-01 04:22

I am trying to upload a photo with Lepozepo/cloudinary

This is my server and client config

server:

Cloudinary.config({
  cl         


        
3条回答
  •  無奈伤痛
    2021-01-01 04:28

    Please use "_upload_file" instead of "upload". "_upload_file" is used in "upload" actually. But somehow you can not catch err and response when you use "upload"

    You can catch err and response.

    Meteor Version : 1.1.0.3

    lepozepo:cloudinary : 1.0.2

    Cloudinary._upload_file(files[0], {}, function(err, res) {
      if (err){
        console.log(err);
        return;
      }
      console.log(res);
    });
    

提交回复
热议问题