我在使用Express.js編寫REST API。 API需要接受來自客戶端的視頻文件並將其上傳到雲端。當我使用api將文件返回給客戶端(作爲測試)時,一切正常。當我然後嘗試上傳相同的文件到cloudinary我得到一個錯誤。錯誤說:Cloudinary文件上傳錯誤
"file.match is not a function"
我不知道什麼file.match即使是爲什麼它給了我一個問題。如果其他人有這個問題,你是如何解決它的? 下面是給我的問題代碼:
var cloudinary = require('cloudinary');
cloudinary.config({
cloud_name: 'name',
api_key: 'key',
api_secret: 'secret'
});
module.exports.cloudinary = cloudinary;
因爲cloudinary.js是你自己的代碼,更喜歡你表明代碼以及 – Simon
@Simon伊夫添加上述 – TheNewGuy