我在 Angular 控制器中检索 GridFS(通过 CollectionFS)中存储的图像时遇到问题。我订阅了流星图像:
$scope.images = $meteor.collectionFS(Images, false, Images);
然后我将它们上传到数据库(有效)
$scope.uploadFile = function (files) {
if (files.length > 0) {
$scope.images.save( files[ 0 ] ).then( function( result ) {
$scope.temp_winery.logo_src = result[ 0 ]._id._id;
});
}
};
但我希望能够在我的模板中显示它们......似乎无法获取我想.url()
在控制器中调用的文件对象 =(。任何帮助、想法或建议将不胜感激。