- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用 Lepozepo/cloudinary 上传照片
这是我的服务器和客户端配置
服务器:
Cloudinary.config({
cloud_name: '*****',
api_key: '******',
api_secret: '********'
});
客户:
$.cloudinary.config({
cloud_name: "*******"
});
我尝试用表单上传图片
html 表单代码:
<form>
<input type="file" id="userimage" name="userimage"/>
<button type="submit">Upload</button>
</form>
这是我的,这是模板的事件
Template.signup.events({
// Submit signup form event
'submit form': function(e, t){
// Prevent default actions
e.preventDefault();
var file = $('#userimage')[0].files[0];
console.log(file)
Cloudinary.upload(file, function(err, res) {
console.log("Upload Error: " + err);
console.log("Upload Result: " + res);
});
}
});
当我点击上传按钮时没有任何反应,我只是遇到了一个错误
error: uncaught TypeError: Failed to execute 'readAsDataURL' on `'FileReader': parameter 1 is not of type 'Blob'.`
我该怎么做才能使这项工作成功?
最佳答案
请使用“_upload_file”而不是“upload”。“_upload_file”实际用于“上传”。但是不知何故,当您使用“上传”时,您无法捕捉到错误和响应
您可以捕获错误和响应。
meteor 版本: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);
});
关于javascript - meteor :多云,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31919613/
我正在尝试使用 Lepozepo/cloudinary 上传照片 这是我的服务器和客户端配置 服务器: Cloudinary.config({ cloud_name: '*****', api
我有一个 Azure 管理的 PostgreSQL 数据库。 我想在 GCP 上创建它的逻辑副本(如果可能,由 Google 管理)。 在 Azure 中,我已将 Azure 复制支持设置为逻辑。然而
我正在尝试使用 Swift 和 Xcode 7.2 创建我的第一个 iOS 应用程序。我正在使用 SpriteKit 制作俄罗斯方 block 。用户失败后, View 会从运行游戏的内部带有 SKS
目前,我们在AWS上有我们的基础设施,我们使用由S3、SNS、SQS等组成的堆栈。所以最近我们计划迁移到Azure,以使用相应的infea,如Blobstorage等。是否有任何库可以包含在项目中以在
我是一名优秀的程序员,十分优秀!