Angular 7:将文件上传到项目中的目录

时间:2019-05-15 17:23:44

标签: angular file-upload angular7

我正在尝试创建一个表单,该表单会将图像上载到我项目中的/ img文件夹,并将该图像的名称存储在数据库中,以便以后可以重用。该应用程序将托管在Heroku上,我不知道如何使该imageuploader与平台一起使用

addPost方法创建一个新的Post对象,该对象将被添加到数据库中。帖子具有imageName,用于在imagefolder中查找正确的图像。

addPost(title: HTMLInputElement, body: HTMLInputElement, count: HTMLInputElement, ...image: File[]): boolean {
    const post = new Post("Test author",title.value, body.value, new Date(), count.valueAsNumber, 0, [], processFile(image));
    this.newPost.emit(post);
    return false;
  }

  processFile(file:File):string{
    var name = file.name+file.type;
    //Upload image to src/assets/images (Stuck here)
    return name;
  }`````

0 个答案:

没有答案