在 Baqend 中保存文件引用的最佳方式是什么?

What is the best way to save a file reference in Baqend?

我正在构建一个 Ionic 2 应用程序,它将个人资料图片上传到 Baqend:

import { db } from 'baqend';
const img = new db.File({ folder: '/profiles',  data: imageData, type: 'base64', mimeType: 'image/jpeg' });
img.upload();

我找不到任何类型的文件引用。最好的保存方式是什么?

Baqend 目前不支持文件引用类型,但已计划支持。 目前,最好的方法是保存文件的id并在加载时从中创建一个文件对象:

保存:

img.upload().then(() => {
  let profile = new db.Profile();
  profile.img = img.id
  return profile.save();
});

加载:

db.Profile.load('profileId').then(profile => {
  let image = new db.File(profile.img);
  console.log(image.url);
});

这比简单地保存文件路径要好得多,因为使用 image.url SDK 可以处理缓存失效。通过这种方式,您可以简单地将 image.url 作为 src 分配给图像元素。