我用过CollectionFS
and Slingshot
,但没有一个有效。他们还有其他选择吗?
问问题
89 次
3 回答
0
我肯定会推荐 Slingshot,而且我在过去取得了很好的成功。我也听说过关于 CollectionFS 的好消息,但从未使用过。
也许尝试发布一个关于你无法工作的问题。
于 2016-07-09T13:07:19.867 回答
0
我使用 Slingshot 将文档从客户端上传到 S3。它有助于防止服务器过载。一定是代码有问题。提供更多细节会有所帮助。
于 2016-07-09T18:05:11.900 回答
0
let fileObj=new upload($(evt.target)[0].files[0])
fileObj.start(function(url){
//do something with url
})
上传类
import {Slingshot} from 'meteor/edgee:slingshot'
class upload{
constructor(fileObj){
this._file=fileObj;
this._uploadInstance=new Slingshot.Upload("s3upload");
}
start(cb){
this._uploadInstance.send(this._file,(error,url)=>{
console.log(error);
if(error)
throw new Meteor.Error('upload-error',this._uploadInstance.xhr.response)
cb(url)
})
}
}
export default upload
它是一个使用弹弓包的工作解决方案谢谢干杯
于 2016-07-19T18:52:33.777 回答